
var scripts = document.getElementsByTagName('script');
var myScript = scripts[ scripts.length - 1 ];

var append_domain_name = "";
if ((myScript.src.indexOf("baxter.com/includes/") != -1) && (location.href.indexOf("www.baxter.com/") == -1)) {append_domain_name = "http://www.baxter.com";}

var queryString = myScript.src.replace(/^[^\?]+\??/,'');

var params = parseQuery( queryString );

function parseQuery ( query ) {
   var Params = new Object ();
   if ( ! query ) return Params; // return empty object
   var Pairs = query.split(/[;&]/);
   for ( var i = 0; i < Pairs.length; i++ ) {
      var KeyVal = Pairs[i].split('=');
      if ( ! KeyVal || KeyVal.length != 2 ) continue;
      var key = unescape( KeyVal[0] );
      var val = unescape( KeyVal[1] );
      val = val.replace(/\+/g, ' ');
      Params[key] = val;
   }
   return Params;
}

function MultiDimensionalArray(iRows,iCols) 
   {
   var i; 
   var j; 
   var a = new Array(iRows++);
   for (i=0; i < iRows; i++) 
      { 
      a[i] = new Array(iCols); 
      for (j=0; j < iCols; j++) 
         { 
         a[i][j] = ""; 
         } 
      } 
   return(a); 
} 

var wcnewsarray = new Array();
var idx = 0;

function reverseSort(a, b) 
   { 
   if(a > b)
      {return -1}
   if(a < b) 
      {return 1}
   return 0 
   } 

/*
	nitems 	= number of news to display
	ncat		= News category (Press releases, Multimedia, Featured Stories)
	fcat		= Business / Functions
	fyear		= Year
	dmode		= Display mode (t = no visual; tpr = no visual for PR homepage; v = w/ visual;)
     ref      = homepage or achive?
*/
function dspnews(nitems, ncat, fcat, dmode, fyear, ref)
{
	var nidx = 0;
	var target_window = "";
	var multimedia_label = "";
	var multimedia_class = "";

      if (dmode == "h") {fyear = "20xx"; ncat="R"; fcat="|"; ref="h";}		//BACKWARD COMPATIBILITY
	var year = fyear.toString().replace(/x/g,"");	// we do not want indexOf to search on x cause it will find no occurences

	switch(dmode)
	{
		case "t":
			document.write("<ul>");
			break;
		case "tpr":
			document.write('<div class="news_list"><ul>');
			break;
		case "h":	//BACKWARD COMPATIBILITY
			document.write('<div id="BxNewsLinks"><h3>Corporate Headlines <img width="200" height="1"><a target="_blank" href="http://investor.baxter.com/phoenix.zhtml?c=86121&p=irol-alerts"><img style="margin-top:2px;margin-bottom:-2px;" border="0" src="http://www.baxter.com/images/home/email_alerts.gif"></a>&nbsp;&nbsp;&nbsp;<a href="http://www.baxter.com/information/rss.html"><img style="margin-left:10px;margin-top:2px;margin-bottom:-2px;" border="0" src="http://www.baxter.com/images/home/rss.jpg"></a></h3><table border="0" cellspacing="0" cellpadding="0"><tr><td class="BxCol">');
			break;
	}


   	for (var i in wcnewsarray.sort(reverseSort))
      {
      	mytemp = eval('wc' + wcnewsarray[i]); 
      	for (var y in mytemp.sort(reverseSort))
		{
            var i = 0; match_str = false;
            while (ncat.length != i)
               {
               if (mytemp[y][10].indexOf(ncat.substr(i,1)) > -1) {match_str = true; break;}
               i += 1; 
               }

			// Filter by year, category (corporate, bioscience, etc...) and business/functions
			if ((mytemp[y][0].toString().indexOf(year) > -1) && (mytemp[y][8].indexOf(fcat.toString()) > -1) && (match_str) && (ref==mytemp[y][4]||ref==mytemp[y][5]))
			{

				//Load page in new window?
                            if ((mytemp[y][7].length > 0) || (append_domain_name != "")) {target_window=" target=\"_blank\" ";}

				// Multimedia item?
				if (mytemp[y][10] == "M")
				{
					switch (mytemp[y][9])
					{
						case "PPT":
						multimedia_label = " / PRESENTATION";
						multimedia_class = "";
						break;
						case "PDF":
						multimedia_label = " / PDF";
						multimedia_class = " class=\"ico ico_pdf\" ";
						break;
						case "WC":
						multimedia_label = " / WEBCAST";
						multimedia_class = " class=\"ico ico_video\" ";
						break;
						case "PC":
						multimedia_label = " / PODCAST";
						multimedia_class = " class=\"ico ico_audio\" ";
						break;
						default:
						multimedia_label = "";
						multimedia_class = "";

					}
				}

				if (dmode == "v")
				{
					document.write("<div class=\"article_intro\">");
					document.write("<div class=\"article_intro_thumbnail\">");
					document.write("<a href='" + append_domain_name + mytemp[y][3] + "'" + target_window + ">");
					document.write("<img src='" + mytemp[y][11] + "' alt='" + mytemp[y][13] + "'/></a></div>");
					document.write("<div class=\"article_intro_text\">");
					document.write("<h3>" + mytemp[y][1] + "</h3>");
					document.write("<p>");

					if (multimedia_label.length > 0)
					{
						document.write("<span" + multimedia_class + ">&nbsp;" + mytemp[y][6] + multimedia_label + "</span><br/>");
					}
					else
					{
						document.write(mytemp[y][6] + "<br/>");
					}

					document.write(mytemp[y][12] + "</p>");
                        	document.write("<a class=\"more\" href='" + append_domain_name + mytemp[y][3] + "'" + target_window + ">"+ mytemp[y][14] +"</a>");
					document.write("</div></div>");
				}
				else
				{
					//BACKWARD COMPATIBILITY
					if (dmode=="h")
					{
						if (nidx==3) {document.write('</td><td class="BxGutter">&nbsp;</td><td class="BxCol">');}
						document.write('<p><a target="' + mytemp[y][7] + '" href="' + append_domain_name + mytemp[y][3] + '">');
						document.write(mytemp[y][1] + '</a><span class="BxNewsDate">['+mytemp[y][6]+']</span></p>');
					}
					else
					{
					//Write headline to page
					document.write("<li>");
					if (dmode=="tpr") {document.write("<span" + multimedia_class + ">&nbsp;");}
					document.write(mytemp[y][6] + multimedia_label);
					if (dmode=="tpr") {document.write("</span>");}
					document.write("<br /><a href='" + append_domain_name + mytemp[y][3] + "'" + target_window + ">" + mytemp[y][1] + "</a></li>");
					}
				}

			nidx++;
			//multimedia_label = "";

			if (nidx >= nitems)
			{

				switch(dmode)
				{
					case "t":
						document.write("</ul>");
						break;
					case "tpr":
						document.write("</ul></div>");
						break;
					case "h": //BACKWARD COMPATIBILITY
						document.write('</td></tr></table></div>');
						break;
				}

				return;
			}

			}


		}
	}


	switch(dmode)
	{
		case "t":
			document.write("</ul>");
			break;
		case "tpr":
			document.write("</ul></div>");
			break;
		case "h": //BACKWARD COMPATIBILITY
			document.write('</td></tr></table></div>');
			break;

	}

}

var wc20050101 = MultiDimensionalArray(66,13);
wcnewsarray[idx++] = 20050101;
wc20050101[0][0] = 20051220;
wc20050101[0][1] = "Baxter Names Steven Caff&eacute; Vice President Global Regulatory Affairs and Medical Vigilance ";
wc20050101[0][2] = "";
wc20050101[0][3] = "/press_room/press_releases/2005/12-20-05-steven_caffe.html";
wc20050101[0][4] = "h";
wc20050101[0][5] = "a";
wc20050101[0][6] = "Dec 20, 2005";
wc20050101[0][7] = "_top";
wc20050101[0][8] = "|1";
wc20050101[0][9] = "1";
wc20050101[0][10] = "R";
wc20050101[0][11] = "";
wc20050101[0][12] = "";
wc20050101[0][13] = "";
wc20050101[0][14] = "Read More";

wc20050101[1][0] = 20051216;
wc20050101[1][1] = "Baxter Provides Support To 100,000 Lives Campaign ";
wc20050101[1][2] = "";
wc20050101[1][3] = "/press_room/press_releases/2005/12-16-05-ihi_campaign.html";
wc20050101[1][4] = "h";
wc20050101[1][5] = "a";
wc20050101[1][6] = "Dec 16, 2005";
wc20050101[1][7] = "_top";
wc20050101[1][8] = "|1";
wc20050101[1][9] = "1";
wc20050101[1][10] = "R";
wc20050101[1][11] = "";
wc20050101[1][12] = "Campaign\'s Goal Is to Reduce Morbidity and Mortality in U.S. Hospitals";
wc20050101[1][13] = "";
wc20050101[1][14] = "Read More";

wc20050101[2][0] = 20051213;
wc20050101[2][1] = "FDA Class I Classification Given to Baxter\'s September 2005 Urgent Product Recall for Meridian Hemodialysis Instrument ";
wc20050101[2][2] = "";
wc20050101[2][3] = "/press_room/press_releases/2005/12-13-05-meridian_recall.html";
wc20050101[2][4] = "h";
wc20050101[2][5] = "a";
wc20050101[2][6] = "Dec 13, 2005";
wc20050101[2][7] = "_top";
wc20050101[2][8] = "|1|8";
wc20050101[2][9] = "1";
wc20050101[2][10] = "R";
wc20050101[2][11] = "";
wc20050101[2][12] = "";
wc20050101[2][13] = "";
wc20050101[2][14] = "Read More";

wc20050101[3][0] = 20051212;
wc20050101[3][1] = "Baxter Launches First Sevoflurane in China and Announces Phased Launch in Other Countries in 2006 ";
wc20050101[3][2] = "";
wc20050101[3][3] = "/press_room/press_releases/2005/12-12-05-sevoflurane.html";
wc20050101[3][4] = "h";
wc20050101[3][5] = "a";
wc20050101[3][6] = "Dec 12, 2005";
wc20050101[3][7] = "_top";
wc20050101[3][8] = "|1|7";
wc20050101[3][9] = "1";
wc20050101[3][10] = "R";
wc20050101[3][11] = "";
wc20050101[3][12] = "With the Addition of Sevoflurane, Baxter Offers the Broadest Portfolio of Inhaled Anesthetics";
wc20050101[3][13] = "";
wc20050101[3][14] = "Read More";

wc20050101[4][0] = 20051206;
wc20050101[4][1] = "Baxter Names Robert H. Armstrong Vice President, Research &amp; Development, Medical Devices ";
wc20050101[4][2] = "";
wc20050101[4][3] = "/press_room/press_releases/2005/12-06-05-armstrong.html";
wc20050101[4][4] = "h";
wc20050101[4][5] = "a";
wc20050101[4][6] = "Dec 06, 2005";
wc20050101[4][7] = "_top";
wc20050101[4][8] = "|1";
wc20050101[4][9] = "1";
wc20050101[4][10] = "R";
wc20050101[4][11] = "";
wc20050101[4][12] = "Newly Created R&amp;D Group to Accelerate Innovation and Optimize Development Activities Across Businesses ";
wc20050101[4][13] = "";
wc20050101[4][14] = "Read More";

wc20050101[5][0] = 20051205;
wc20050101[5][1] = "Jeffrey Modell Foundation Opens Diagnostic Center for Primary Immunodeficiencies at Emory Children\'s Center in Atlanta ";
wc20050101[5][2] = "";
wc20050101[5][3] = "/press_room/press_releases/2005/12-05-05-diagnostic_center.html";
wc20050101[5][4] = "h";
wc20050101[5][5] = "a";
wc20050101[5][6] = "Dec 05, 2005";
wc20050101[5][7] = "_top";
wc20050101[5][8] = "|1";
wc20050101[5][9] = "1";
wc20050101[5][10] = "R";
wc20050101[5][11] = "";
wc20050101[5][12] = "Grant from Baxter Will Support Primary Immunodeficiency Diagnosis and Patient Access to Care";
wc20050101[5][13] = "";
wc20050101[5][14] = "Read More";

wc20050101[6][0] = 20051205;
wc20050101[6][1] = "Halozyme Therapeutics and Baxter Healthcare Corporation Announce FDA Approval of Hylenex ";
wc20050101[6][2] = "";
wc20050101[6][3] = "/press_room/press_releases/2005/12-05-05-hylenex.html";
wc20050101[6][4] = "h";
wc20050101[6][5] = "a";
wc20050101[6][6] = "Dec 05, 2005";
wc20050101[6][7] = "_top";
wc20050101[6][8] = "|1|7";
wc20050101[6][9] = "1";
wc20050101[6][10] = "R";
wc20050101[6][11] = "";
wc20050101[6][12] = "Approval Marks the First Recombinant Human Hyaluronidase Approved for Use As an Adjuvant Drug to Increase the Absorption and Dispersion of Other Injected Drugs";
wc20050101[6][13] = "";
wc20050101[6][14] = "Read More";

wc20050101[7][0] = 20051123;
wc20050101[7][1] = "KIOVIG, Baxter\'s New IVIG Product Receives Unanimous Positive Opinion in Europe as Replacement Therapy for Immunodeficiencies ";
wc20050101[7][2] = "";
wc20050101[7][3] = "/press_room/press_releases/2005/11-23-05-kiovig.html";
wc20050101[7][4] = "h";
wc20050101[7][5] = "a";
wc20050101[7][6] = "Nov 23, 2005";
wc20050101[7][7] = "_top";
wc20050101[7][8] = "|1|2";
wc20050101[7][9] = "1";
wc20050101[7][10] = "R";
wc20050101[7][11] = "";
wc20050101[7][12] = "";
wc20050101[7][13] = "";
wc20050101[7][14] = "Read More";

wc20050101[8][0] = 20051122;
wc20050101[8][1] = "Honor Society of Nursing Recognizes Researcher for Relief of Cancer Treatment Side Effects ";
wc20050101[8][2] = "";
wc20050101[8][3] = "/press_room/press_releases/2005/11-22-05_honor_society_award.html";
wc20050101[8][4] = "h";
wc20050101[8][5] = "a";
wc20050101[8][6] = "Nov 22, 2005";
wc20050101[8][7] = "_top";
wc20050101[8][8] = "|1|7";
wc20050101[8][9] = "1";
wc20050101[8][10] = "R";
wc20050101[8][11] = "";
wc20050101[8][12] = "";
wc20050101[8][13] = "";
wc20050101[8][14] = "Read More";

wc20050101[9][0] = 20051118;
wc20050101[9][1] = "Baxter Announces FDA Clearance Allowing Blood Centers to Pursue Use of AMICUS-Collected Platelets Stored Up to Seven Days ";
wc20050101[9][2] = "";
wc20050101[9][3] = "/press_room/press_releases/2005/11-18-05-amicus_platelets.html";
wc20050101[9][4] = "h";
wc20050101[9][5] = "a";
wc20050101[9][6] = "Nov 18, 2005";
wc20050101[9][7] = "_top";
wc20050101[9][8] = "|1|2";
wc20050101[9][9] = "1";
wc20050101[9][10] = "R";
wc20050101[9][11] = "";
wc20050101[9][12] = "Clearance Helps Increase Availability of Important Blood Component";
wc20050101[9][13] = "";
wc20050101[9][14] = "Read More";

wc20050101[10][0] = 20051117;
wc20050101[10][1] = "Baxter and Kuros Announce Product License and Collaboration Agreement ";
wc20050101[10][2] = "";
wc20050101[10][3] = "/press_room/press_releases/2005/11-17-05-kuros.html";
wc20050101[10][4] = "h";
wc20050101[10][5] = "a";
wc20050101[10][6] = "Nov 17, 2005";
wc20050101[10][7] = "_top";
wc20050101[10][8] = "|1|2";
wc20050101[10][9] = "1";
wc20050101[10][10] = "R";
wc20050101[10][11] = "";
wc20050101[10][12] = "Exclusive Worldwide Agreement Expands Baxter\'s Presence in Fast-Growing Biosurgery and Orthobiologics Markets ";
wc20050101[10][13] = "";
wc20050101[10][14] = "Read More";

wc20050101[11][0] = 20051116;
wc20050101[11][1] = "Baxter Names Cheryl White V.P. Quality ";
wc20050101[11][2] = "";
wc20050101[11][3] = "/press_room/press_releases/2005/11-16-05-cheryl_white.html";
wc20050101[11][4] = "h";
wc20050101[11][5] = "a";
wc20050101[11][6] = "Nov 16, 2005";
wc20050101[11][7] = "_top";
wc20050101[11][8] = "|1";
wc20050101[11][9] = "1";
wc20050101[11][10] = "R";
wc20050101[11][11] = "";
wc20050101[11][12] = "";
wc20050101[11][13] = "";
wc20050101[11][14] = "Read More";

wc20050101[12][0] = 20051116;
wc20050101[12][1] = "Baxter Funds Pension Plan and Retires Debt With Earnings Repatriated Under American Jobs Creation Act ";
wc20050101[12][2] = "";
wc20050101[12][3] = "/press_room/press_releases/2005/11-16-05-repatriation_funds.html";
wc20050101[12][4] = "h";
wc20050101[12][5] = "a";
wc20050101[12][6] = "Nov 16, 2005";
wc20050101[12][7] = "_top";
wc20050101[12][8] = "|1";
wc20050101[12][9] = "1";
wc20050101[12][10] = "R";
wc20050101[12][11] = "";
wc20050101[12][12] = "";
wc20050101[12][13] = "";
wc20050101[12][14] = "Read More";

wc20050101[13][0] = 20051116;
wc20050101[13][1] = "Baxter Boosts Awareness of AAT Deficiency During World COPD Day ";
wc20050101[13][2] = "";
wc20050101[13][3] = "/press_room/press_releases/2005/11-16-05-copd_day.html";
wc20050101[13][4] = "h";
wc20050101[13][5] = "a";
wc20050101[13][6] = "Nov 16, 2005";
wc20050101[13][7] = "_top";
wc20050101[13][8] = "|1|2";
wc20050101[13][9] = "1";
wc20050101[13][10] = "R";
wc20050101[13][11] = "";
wc20050101[13][12] = "Leader in pulmonary therapy aims to improve understanding and proper diagnosis of genetic lung disease";
wc20050101[13][13] = "";
wc20050101[13][14] = "Read More";

wc20050101[14][0] = 20051115;
wc20050101[14][1] = "Baxter Declares Annual Dividend ";
wc20050101[14][2] = "";
wc20050101[14][3] = "/press_room/press_releases/2005/11-15-05-annual_dividend.html";
wc20050101[14][4] = "h";
wc20050101[14][5] = "a";
wc20050101[14][6] = "Nov 15, 2005";
wc20050101[14][7] = "_top";
wc20050101[14][8] = "|1|3";
wc20050101[14][9] = "1";
wc20050101[14][10] = "R";
wc20050101[14][11] = "";
wc20050101[14][12] = "";
wc20050101[14][13] = "";
wc20050101[14][14] = "Read More";

wc20050101[15][0] = 20051115;
wc20050101[15][1] = "Baxter Announces Plans to Voluntarily Withdraw 6060 Multi-Therapy Infusion Pump ";
wc20050101[15][2] = "";
wc20050101[15][3] = "/press_room/press_releases/2005/11-15-05-pump_recall_6060.html";
wc20050101[15][4] = "h";
wc20050101[15][5] = "a";
wc20050101[15][6] = "Nov 15, 2005";
wc20050101[15][7] = "_top";
wc20050101[15][8] = "|1|7";
wc20050101[15][9] = "1";
wc20050101[15][10] = "R";
wc20050101[15][11] = "";
wc20050101[15][12] = "Baxter to Distribute Alternate Pumps Through Agreement with Smiths Medical";
wc20050101[15][13] = "";
wc20050101[15][14] = "Read More";

wc20050101[16][0] = 20051111;
wc20050101[16][1] = "Baxter Inducts Blood Donors From 13 Blood Centers Across the Country Into Donation Hall of Fame ";
wc20050101[16][2] = "";
wc20050101[16][3] = "/press_room/press_releases/2005/11-11-05-blood_donors.html";
wc20050101[16][4] = "h";
wc20050101[16][5] = "a";
wc20050101[16][6] = "Nov 11, 2005";
wc20050101[16][7] = "_top";
wc20050101[16][8] = "|1";
wc20050101[16][9] = "1";
wc20050101[16][10] = "R";
wc20050101[16][11] = "";
wc20050101[16][12] = "Former Oklahoma Governor Among Those Recognized for Extraordinary Commitment to Blood Donation";
wc20050101[16][13] = "";
wc20050101[16][14] = "Read More";

wc20050101[17][0] = 20051102;
wc20050101[17][1] = "Preliminary Results Suggest Augmentation Therapy May Slow Decline of Health-Related Quality of Life in Patients with AAT Deficiency ";
wc20050101[17][2] = "";
wc20050101[17][3] = "/press_room/press_releases/2005/11-02-05-aat_deficiency.html";
wc20050101[17][4] = "h";
wc20050101[17][5] = "a";
wc20050101[17][6] = "Nov 02, 2005";
wc20050101[17][7] = "_top";
wc20050101[17][8] = "|1|2";
wc20050101[17][9] = "1";
wc20050101[17][10] = "R";
wc20050101[17][11] = "";
wc20050101[17][12] = "Results Reveal Significantly Compromised Physical Health in AAT Deficient Patients Compared to General Population ";
wc20050101[17][13] = "";
wc20050101[17][14] = "Read More";

wc20050101[18][0] = 20051027;
wc20050101[18][1] = "National Hemophilia Foundation Grants 2005 Awards Under Baxter-Sponsored NHF Clinical Fellowship Program ";
wc20050101[18][2] = "";
wc20050101[18][3] = "/press_room/press_releases/2005/10-27-05-nhf_awards.html";
wc20050101[18][4] = "h";
wc20050101[18][5] = "a";
wc20050101[18][6] = "Oct 27, 2005";
wc20050101[18][7] = "_top";
wc20050101[18][8] = "|1|2";
wc20050101[18][9] = "1";
wc20050101[18][10] = "R";
wc20050101[18][11] = "";
wc20050101[18][12] = "Baxter Renews Support of NHF Fellowship Program to Promote Excellence in Hemophilia Care";
wc20050101[18][13] = "";
wc20050101[18][14] = "Read More";

wc20050101[19][0] = 20051024;
wc20050101[19][1] = "Baxter Selected to Dow Jones Sustainability Index for Seventh Consecutive Year ";
wc20050101[19][2] = "";
wc20050101[19][3] = "/press_room/press_releases/2005/10-24-05-dj_sust_index.html";
wc20050101[19][4] = "h";
wc20050101[19][5] = "a";
wc20050101[19][6] = "Oct 24, 2005";
wc20050101[19][7] = "_top";
wc20050101[19][8] = "|1|3";
wc20050101[19][9] = "1";
wc20050101[19][10] = "R";
wc20050101[19][11] = "";
wc20050101[19][12] = "";
wc20050101[19][13] = "";
wc20050101[19][14] = "Read More";

wc20050101[20][0] = 20051020;
wc20050101[20][1] = "Baxter Reports Financial Results for the Third Quarter ";
wc20050101[20][2] = "";
wc20050101[20][3] = "/press_room/press_releases/2005/10-20-05-q3_earnings.html";
wc20050101[20][4] = "h";
wc20050101[20][5] = "a";
wc20050101[20][6] = "Oct 20, 2005";
wc20050101[20][7] = "_top";
wc20050101[20][8] = "|1|3";
wc20050101[20][9] = "1";
wc20050101[20][10] = "R";
wc20050101[20][11] = "";
wc20050101[20][12] = "Company Delivers Solid Operating Results and Continued Cash Flow Improvement";
wc20050101[20][13] = "";
wc20050101[20][14] = "Read More";

wc20050101[21][0] = 20051018;
wc20050101[21][1] = "Baxter International Foundation Awards Nearly $1.3 Million in Grants to Help Improve Access to Healthcare for Underserved Populations ";
wc20050101[21][2] = "";
wc20050101[21][3] = "/press_room/press_releases/2005/10-18-05_second_third_qtr_summary.html";
wc20050101[21][4] = "h";
wc20050101[21][5] = "a";
wc20050101[21][6] = "Oct 18, 2005";
wc20050101[21][7] = "_top";
wc20050101[21][8] = "";
wc20050101[21][9] = "1";
wc20050101[21][10] = "R";
wc20050101[21][11] = "";
wc20050101[21][12] = "Second- and Third-Quarter Grants Support Healthcare Initiatives in Nine Countries";
wc20050101[21][13] = "";
wc20050101[21][14] = "Read More";

wc20050101[22][0] = 20051017;
wc20050101[22][1] = "FDA Approves Baxter\'s FLEXBUMIN, the First and Only Albumin Solution to be Packaged in a Flexible Container ";
wc20050101[22][2] = "";
wc20050101[22][3] = "/press_room/press_releases/2005/10-17-05-flexbumin.html";
wc20050101[22][4] = "h";
wc20050101[22][5] = "a";
wc20050101[22][6] = "Oct 17, 2005";
wc20050101[22][7] = "_top";
wc20050101[22][8] = "|1|2";
wc20050101[22][9] = "1";
wc20050101[22][10] = "R";
wc20050101[22][11] = "";
wc20050101[22][12] = "Packaging advancements provide ease of use benefits to healthcare professionals; launch planned by early 2006";
wc20050101[22][13] = "";
wc20050101[22][14] = "Read More";

wc20050101[23][0] = 20051013;
wc20050101[23][1] = "Baxter Announces Additional Actions by U.S. FDA Concerning COLLEAGUE Infusion Pumps ";
wc20050101[23][2] = "";
wc20050101[23][3] = "/press_room/press_releases/2005/10-13-05-pump_seizure.html";
wc20050101[23][4] = "h";
wc20050101[23][5] = "a";
wc20050101[23][6] = "Oct 13, 2005";
wc20050101[23][7] = "_top";
wc20050101[23][8] = "|1|7";
wc20050101[23][9] = "1";
wc20050101[23][10] = "R";
wc20050101[23][11] = "";
wc20050101[23][12] = "";
wc20050101[23][13] = "";
wc20050101[23][14] = "Read More";

wc20050101[24][0] = 20050929;
wc20050101[24][1] = "Baxter Announces Collaborations to Develop Longer Acting Forms of Blood Clotting Factors ";
wc20050101[24][2] = "";
wc20050101[24][3] = "/press_room/press_releases/2005/09-29-05-collaboration.html";
wc20050101[24][4] = "h";
wc20050101[24][5] = "a";
wc20050101[24][6] = "Sep 29, 2005";
wc20050101[24][7] = "_top";
wc20050101[24][8] = "|1|2";
wc20050101[24][9] = "1";
wc20050101[24][10] = "R";
wc20050101[24][11] = "";
wc20050101[24][12] = "";
wc20050101[24][13] = "";
wc20050101[24][14] = "Read More";

wc20050101[25][0] = 20050927;
wc20050101[25][1] = "Baxter Announces Plan to Repatriate Approximately $2.0 Billion Under the American Jobs Creation Act ";
wc20050101[25][2] = "";
wc20050101[25][3] = "/press_room/press_releases/2005/09-27-05-repatriation.html";
wc20050101[25][4] = "h";
wc20050101[25][5] = "a";
wc20050101[25][6] = "Sep 27, 2005";
wc20050101[25][7] = "_top";
wc20050101[25][8] = "|1|3";
wc20050101[25][9] = "1";
wc20050101[25][10] = "R";
wc20050101[25][11] = "";
wc20050101[25][12] = "";
wc20050101[25][13] = "";
wc20050101[25][14] = "Read More";

wc20050101[26][0] = 20050926;
wc20050101[26][1] = "Baxter Announces the U.S. Launch of Gammagard Liquid 10% For Patients With Primary Immunodeficiency Disorders ";
wc20050101[26][2] = "";
wc20050101[26][3] = "/press_room/press_releases/2005/09-26-05-gammagard_liquid.html";
wc20050101[26][4] = "h";
wc20050101[26][5] = "a";
wc20050101[26][6] = "Sep 26, 2005";
wc20050101[26][7] = "_top";
wc20050101[26][8] = "|1|2";
wc20050101[26][9] = "1";
wc20050101[26][10] = "R";
wc20050101[26][11] = "";
wc20050101[26][12] = "";
wc20050101[26][13] = "";
wc20050101[26][14] = "Read More";

wc20050101[27][0] = 20050923;
wc20050101[27][1] = "Baxter Prevails in Sevoflurane Patent Dispute ";
wc20050101[27][2] = "";
wc20050101[27][3] = "/press_room/press_releases/2005/09-23-05-sevoflurane.html";
wc20050101[27][4] = "h";
wc20050101[27][5] = "a";
wc20050101[27][6] = "Sep 23, 2005";
wc20050101[27][7] = "_top";
wc20050101[27][8] = "|1|7";
wc20050101[27][9] = "1";
wc20050101[27][10] = "R";
wc20050101[27][11] = "";
wc20050101[27][12] = "U.S. District Court Rules Abbott Patent Not Infringed";
wc20050101[27][13] = "";
wc20050101[27][14] = "Read More";

wc20050101[28][0] = 20050921;
wc20050101[28][1] = "Baxter\'s February 2005 Corrective Action for COLLEAGUE Infusion Pump Receives FDA Class I Designation ";
wc20050101[28][2] = "";
wc20050101[28][3] = "/press_room/press_releases/2005/09-21-05-pump_recall.html";
wc20050101[28][4] = "h";
wc20050101[28][5] = "a";
wc20050101[28][6] = "Sep 21, 2005";
wc20050101[28][7] = "_top";
wc20050101[28][8] = "|1|7";
wc20050101[28][9] = "1";
wc20050101[28][10] = "R";
wc20050101[28][11] = "";
wc20050101[28][12] = "";
wc20050101[28][13] = "";
wc20050101[28][14] = "Read More";

wc20050101[29][0] = 20050915;
wc20050101[29][1] = "AABB and Baxter Sponsor First Annual Blood Collectors Week ";
wc20050101[29][2] = "";
wc20050101[29][3] = "/press_room/press_releases/2005/09-15-05-blood_collectors_week.html";
wc20050101[29][4] = "h";
wc20050101[29][5] = "a";
wc20050101[29][6] = "Sep 15, 2005";
wc20050101[29][7] = "_top";
wc20050101[29][8] = "|1";
wc20050101[29][9] = "1";
wc20050101[29][10] = "R";
wc20050101[29][11] = "";
wc20050101[29][12] = "Blood Centers Nationwide Encourage Community Members To Show Support by Donating Blood";
wc20050101[29][13] = "";
wc20050101[29][14] = "Read More";

wc20050101[30][0] = 20050914;
wc20050101[30][1] = "Baxter to Present at Banc of America 35th Annual Investment Conference ";
wc20050101[30][2] = "";
wc20050101[30][3] = "/press_room/press_releases/2005/09-14-05-boa_conf.html";
wc20050101[30][4] = "h";
wc20050101[30][5] = "a";
wc20050101[30][6] = "Sep 14, 2005";
wc20050101[30][7] = "_top";
wc20050101[30][8] = "|1|3";
wc20050101[30][9] = "1";
wc20050101[30][10] = "R";
wc20050101[30][11] = "";
wc20050101[30][12] = "";
wc20050101[30][13] = "";
wc20050101[30][14] = "Read More";

wc20050101[31][0] = 20050907;
wc20050101[31][1] = "Baxter to Present at Bear Stearns 18th Annual Healthcare Conference ";
wc20050101[31][2] = "";
wc20050101[31][3] = "/press_room/press_releases/2005/09-07-05-healthcare_conf.html";
wc20050101[31][4] = "h";
wc20050101[31][5] = "a";
wc20050101[31][6] = "Sep 07, 2005";
wc20050101[31][7] = "_top";
wc20050101[31][8] = "|1|3";
wc20050101[31][9] = "1";
wc20050101[31][10] = "R";
wc20050101[31][11] = "";
wc20050101[31][12] = "";
wc20050101[31][13] = "";
wc20050101[31][14] = "Read More";

wc20050101[32][0] = 20050901;
wc20050101[32][1] = "Baxter Supports Hurricane Katrina Relief Efforts ";
wc20050101[32][2] = "";
wc20050101[32][3] = "/press_room/press_releases/2005/09-01-05-hurricane_katrina.html";
wc20050101[32][4] = "h";
wc20050101[32][5] = "a";
wc20050101[32][6] = "Sep 01, 2005";
wc20050101[32][7] = "_top";
wc20050101[32][8] = "|1";
wc20050101[32][9] = "1";
wc20050101[32][10] = "R";
wc20050101[32][11] = "";
wc20050101[32][12] = "";
wc20050101[32][13] = "";
wc20050101[32][14] = "Read More";

wc20050101[33][0] = 20050829;
wc20050101[33][1] = "Baxter Receives FDA Approval for Ceftriaxone Injection Offered in Frozen, Premixed Ready-to-Use Containers ";
wc20050101[33][2] = "";
wc20050101[33][3] = "/press_room/press_releases/2005/08-29-05-ceftriaxone.html";
wc20050101[33][4] = "h";
wc20050101[33][5] = "a";
wc20050101[33][6] = "Aug 29, 2005";
wc20050101[33][7] = "_top";
wc20050101[33][8] = "|1|7";
wc20050101[33][9] = "1";
wc20050101[33][10] = "R";
wc20050101[33][11] = "";
wc20050101[33][12] = "Only Frozen, Premixed Presentation Offers Clinicians Ease of Use and Supports Medication Error Reduction";
wc20050101[33][13] = "";
wc20050101[33][14] = "Read More";

wc20050101[34][0] = 20050811;
wc20050101[34][1] = "Expanded Clinical Data for ADVATE Confirm Safety and Efficacy in Hemophilia Patients ";
wc20050101[34][2] = "";
wc20050101[34][3] = "/press_room/press_releases/2005/08-11-05-advate_efficacy.html";
wc20050101[34][4] = "h";
wc20050101[34][5] = "a";
wc20050101[34][6] = "Aug 11, 2005";
wc20050101[34][7] = "_top";
wc20050101[34][8] = "|1|2";
wc20050101[34][9] = "1";
wc20050101[34][10] = "R";
wc20050101[34][11] = "";
wc20050101[34][12] = "Studies Presented at 20th Congress of International Society on Thrombosis and Haemostasis";
wc20050101[34][13] = "";
wc20050101[34][14] = "Read More";

wc20050101[35][0] = 20050808;
wc20050101[35][1] = "Halozyme Therapeutics and Baxter Healthcare Corporation Expand Relationship to Include European Union ";
wc20050101[35][2] = "";
wc20050101[35][3] = "/press_room/press_releases/2005/08-08-05-halozyme_europe.html";
wc20050101[35][4] = "h";
wc20050101[35][5] = "a";
wc20050101[35][6] = "Aug 08, 2005";
wc20050101[35][7] = "_top";
wc20050101[35][8] = "|1|7";
wc20050101[35][9] = "1";
wc20050101[35][10] = "R";
wc20050101[35][11] = "";
wc20050101[35][12] = "";
wc20050101[35][13] = "";
wc20050101[35][14] = "Read More";

wc20050101[36][0] = 20050721;
wc20050101[36][1] = "Baxter Reports Earnings Per Share of $0.51 and 8 Percent Increase in Sales in Second Quarter ";
wc20050101[36][2] = "";
wc20050101[36][3] = "/press_room/press_releases/2005/07-21-05-q2_earnings.html";
wc20050101[36][4] = "h";
wc20050101[36][5] = "a";
wc20050101[36][6] = "Jul 21, 2005";
wc20050101[36][7] = "_top";
wc20050101[36][8] = "|1|3";
wc20050101[36][9] = "1";
wc20050101[36][10] = "R";
wc20050101[36][11] = "";
wc20050101[36][12] = "";
wc20050101[36][13] = "";
wc20050101[36][14] = "Read More";

wc20050101[37][0] = 20050721;
wc20050101[37][1] = "Baxter Receives Notice From FDA Classifying Colleague Infusion Pump March 2005 Corrective Action as a Class I Recall ";
wc20050101[37][2] = "";
wc20050101[37][3] = "/press_room/press_releases/2005/07-21-05-colleague_pump.html";
wc20050101[37][4] = "h";
wc20050101[37][5] = "a";
wc20050101[37][6] = "Jul 21, 2005";
wc20050101[37][7] = "_top";
wc20050101[37][8] = "|1|7";
wc20050101[37][9] = "1";
wc20050101[37][10] = "R";
wc20050101[37][11] = "";
wc20050101[37][12] = "Baxter Also Notifies Customers of Product Hold on Shipments of COLLEAGUE Infusion Pumps Due to Design Issue";
wc20050101[37][13] = "";
wc20050101[37][14] = "Read More";

wc20050101[38][0] = 20050721;
wc20050101[38][1] = "Baxter Healthcare Corporation Announces Agreement to Distribute and Promote Gambro\'s Hemodialysis Instruments ";
wc20050101[38][2] = "";
wc20050101[38][3] = "/press_room/press_releases/2005/07-21-05-hd_announcement.html";
wc20050101[38][4] = "h";
wc20050101[38][5] = "a";
wc20050101[38][6] = "Jul 21, 2005";
wc20050101[38][7] = "_top";
wc20050101[38][8] = "|1|8";
wc20050101[38][9] = "1";
wc20050101[38][10] = "R";
wc20050101[38][11] = "";
wc20050101[38][12] = "Baxter to Focus Internal Product Development Resources on Renal Home Therapy";
wc20050101[38][13] = "";
wc20050101[38][14] = "Read More";

wc20050101[39][0] = 20050608;
wc20050101[39][1] = "Baxter Testifies Before Congress About Business Benefits of Climate Change Initiatives ";
wc20050101[39][2] = "";
wc20050101[39][3] = "/press_room/press_releases/2005/06-08-05-climate_change.html";
wc20050101[39][4] = "h";
wc20050101[39][5] = "a";
wc20050101[39][6] = "Jun 08, 2005";
wc20050101[39][7] = "_top";
wc20050101[39][8] = "|1";
wc20050101[39][9] = "1";
wc20050101[39][10] = "R";
wc20050101[39][11] = "";
wc20050101[39][12] = "";
wc20050101[39][13] = "";
wc20050101[39][14] = "Read More";

wc20050101[40][0] = 20050526;
wc20050101[40][1] = "The Baxter International Foundation Awards Grants in Six Countries to Improve Access to Healthcare ";
wc20050101[40][2] = "";
wc20050101[40][3] = "/press_room/pres_releases/2005/05-26-05_first_qtr_summary.html";
wc20050101[40][4] = "h";
wc20050101[40][5] = "a";
wc20050101[40][6] = "May 26, 2005";
wc20050101[40][7] = "_top";
wc20050101[40][8] = "|1";
wc20050101[40][9] = "1";
wc20050101[40][10] = "R";
wc20050101[40][11] = "";
wc20050101[40][12] = "";
wc20050101[40][13] = "";
wc20050101[40][14] = "Read More";

wc20050101[41][0] = 20050525;
wc20050101[41][1] = "Baxter Executives Discuss Financial Outlook and Strategic Priorities at Investor Conference ";
wc20050101[41][2] = "";
wc20050101[41][3] = "/press_room/press_releases/2005/05-25-05-investor_conf.html";
wc20050101[41][4] = "h";
wc20050101[41][5] = "a";
wc20050101[41][6] = "May 25, 2005";
wc20050101[41][7] = "_top";
wc20050101[41][8] = "|1|3";
wc20050101[41][9] = "1";
wc20050101[41][10] = "R";
wc20050101[41][11] = "";
wc20050101[41][12] = "";
wc20050101[41][13] = "";
wc20050101[41][14] = "Read More";

wc20050101[42][0] = 20050524;
wc20050101[42][1] = "Data Presented From the Largest AAT Deficiency Screening Program in Patients with COPD Identifies Risk For Hereditary Emphysema ";
wc20050101[42][2] = "";
wc20050101[42][3] = "/press_room/press_releases/2005/05-24-05-aat_deficiency.html";
wc20050101[42][4] = "h";
wc20050101[42][5] = "a";
wc20050101[42][6] = "May 24, 2005";
wc20050101[42][7] = "_top";
wc20050101[42][8] = "|1|2";
wc20050101[42][9] = "1";
wc20050101[42][10] = "R";
wc20050101[42][11] = "";
wc20050101[42][12] = "Study results look to increase awareness of the importance of testing for early diagnosis and treatment";
wc20050101[42][13] = "";
wc20050101[42][14] = "Read More";

wc20050101[43][0] = 20050503;
wc20050101[43][1] = "Baxter Executives Highlight Significant Change and Progress Made Over Last Year at Company\'s Annual Stockholder Meeting ";
wc20050101[43][2] = "";
wc20050101[43][3] = "/press_room/press_releases/2005/05-03-05-stockholder_meeting.html";
wc20050101[43][4] = "h";
wc20050101[43][5] = "a";
wc20050101[43][6] = "May 03, 2005";
wc20050101[43][7] = "_top";
wc20050101[43][8] = "|1|3";
wc20050101[43][9] = "1";
wc20050101[43][10] = "R";
wc20050101[43][11] = "";
wc20050101[43][12] = "";
wc20050101[43][13] = "";
wc20050101[43][14] = "Read More";

wc20050101[44][0] = 20050502;
wc20050101[44][1] = "FDA Approves Baxter\'s GAMMAGARD Liquid 10% for Patients with Primary Immunodeficiency Disorders ";
wc20050101[44][2] = "";
wc20050101[44][3] = "/press_room/press_releases/2005/05-02-05-gammagard_liquid.html";
wc20050101[44][4] = "h";
wc20050101[44][5] = "a";
wc20050101[44][6] = "May 02, 2005";
wc20050101[44][7] = "_top";
wc20050101[44][8] = "|1|2";
wc20050101[44][9] = "1";
wc20050101[44][10] = "R";
wc20050101[44][11] = "";
wc20050101[44][12] = "Formulation, purification and packaging advancements provide benefits to healthcare professionals and patients";
wc20050101[44][13] = "";
wc20050101[44][14] = "Read More";

wc20050101[45][0] = 20050421;
wc20050101[45][1] = "Baxter Reports 20 Percent Increase in First Quarter Earnings, with EPS of $0.36 and Sales Growth of 8 Percent ";
wc20050101[45][2] = "";
wc20050101[45][3] = "/press_room/press_releases/2005/04-21-05-Q1earnings.html";
wc20050101[45][4] = "h";
wc20050101[45][5] = "a";
wc20050101[45][6] = "Apr 21, 2005";
wc20050101[45][7] = "_top";
wc20050101[45][8] = "|1|3";
wc20050101[45][9] = "1";
wc20050101[45][10] = "R";
wc20050101[45][11] = "";
wc20050101[45][12] = "";
wc20050101[45][13] = "";
wc20050101[45][14] = "Read More";

wc20050101[46][0] = 20050413;
wc20050101[46][1] = "Baxter Receives Marketing Approval from Australia\'s Therapeutic Goods Administration for ADVATE to Treat Haemophilia A ";
wc20050101[46][2] = "";
wc20050101[46][3] = "/press_room/press_releases/2005/04-13-05-advate_australia.html";
wc20050101[46][4] = "h";
wc20050101[46][5] = "a";
wc20050101[46][6] = "Apr 13, 2005";
wc20050101[46][7] = "_top";
wc20050101[46][8] = "|1|2";
wc20050101[46][9] = "1";
wc20050101[46][10] = "R";
wc20050101[46][11] = "";
wc20050101[46][12] = "";
wc20050101[46][13] = "";
wc20050101[46][14] = "Read More";

wc20050101[47][0] = 20050413;
wc20050101[47][1] = "CSC Wins $19.6 Million Contract for Advanced Development of Chemical Nerve Agent Treatment ";
wc20050101[47][2] = "";
wc20050101[47][3] = "/press_room/press_releases/2005/04-13-05-csc.html";
wc20050101[47][4] = "h";
wc20050101[47][5] = "a";
wc20050101[47][6] = "Apr 13, 2005";
wc20050101[47][7] = "_top";
wc20050101[47][8] = "|1|2";
wc20050101[47][9] = "1";
wc20050101[47][10] = "R";
wc20050101[47][11] = "";
wc20050101[47][12] = "CSC&rsquo;s DVC Teams with Baxter Healthcare Corporation to Produce Plasma-Derived Human Butyrylcholinesterase";
wc20050101[47][13] = "";
wc20050101[47][14] = "Read More";

wc20050101[48][0] = 20050412;
wc20050101[48][1] = "Baxter Names Dr. Sarah Prichard as Vice President of Global Medical Affairs for Renal Business ";
wc20050101[48][2] = "";
wc20050101[48][3] = "/press_room/press_releases/2005/04-12-05-prichard.html";
wc20050101[48][4] = "h";
wc20050101[48][5] = "a";
wc20050101[48][6] = "Apr 12, 2005";
wc20050101[48][7] = "_top";
wc20050101[48][8] = "|1|8";
wc20050101[48][9] = "1";
wc20050101[48][10] = "R";
wc20050101[48][11] = "";
wc20050101[48][12] = "";
wc20050101[48][13] = "";
wc20050101[48][14] = "Read More";

wc20050101[49][0] = 20050411;
wc20050101[49][1] = "Dr. David L. Sackett Selected for the Prestigious Baxter International Foundation Health Services Research Prize ";
wc20050101[49][2] = "";
wc20050101[49][3] = "/press_room/press_releases/2005/04-11-05-sackett.html";
wc20050101[49][4] = "h";
wc20050101[49][5] = "a";
wc20050101[49][6] = "Apr 11, 2005";
wc20050101[49][7] = "_top";
wc20050101[49][8] = "|1";
wc20050101[49][9] = "1";
wc20050101[49][10] = "R";
wc20050101[49][11] = "";
wc20050101[49][12] = "";
wc20050101[49][13] = "";
wc20050101[49][14] = "Read More";

wc20050101[50][0] = 20050411;
wc20050101[50][1] = "Baxter and Cangene Announce U.S. FDA Approval of Liquid Formulation of WinRho&reg; SDF ";
wc20050101[50][2] = "";
wc20050101[50][3] = "/press_room/press_releases/2005/04-11-05-winrho_liquid.html";
wc20050101[50][4] = "h";
wc20050101[50][5] = "a";
wc20050101[50][6] = "Apr 11, 2005";
wc20050101[50][7] = "_top";
wc20050101[50][8] = "|1|2";
wc20050101[50][9] = "1";
wc20050101[50][10] = "R";
wc20050101[50][11] = "";
wc20050101[50][12] = "Cangene to Continue Manufacturing; Baxter Gains Exclusive U.S. Rights to Market Treatment for Bleeding Disorder ";
wc20050101[50][13] = "";
wc20050101[50][14] = "Read More";

wc20050101[51][0] = 20050407;
wc20050101[51][1] = "Baxter\'s ALYX System Wins 2005 Medical Design Excellence Award ";
wc20050101[51][2] = "";
wc20050101[51][3] = "/press_room/press_releases/2005/04-07-05-mdea_award.html";
wc20050101[51][4] = "h";
wc20050101[51][5] = "a";
wc20050101[51][6] = "Apr 07, 2005";
wc20050101[51][7] = "_top";
wc20050101[51][8] = "|1|2";
wc20050101[51][9] = "1";
wc20050101[51][10] = "R";
wc20050101[51][11] = "";
wc20050101[51][12] = "";
wc20050101[51][13] = "";
wc20050101[51][14] = "Read More";

wc20050101[52][0] = 20050331;
wc20050101[52][1] = "Baxter International Inc. Names Peter Hellman to Board of Directors ";
wc20050101[52][2] = "";
wc20050101[52][3] = "/press_room/press_releases/2005/03-31-05-hellman.html";
wc20050101[52][4] = "h";
wc20050101[52][5] = "a";
wc20050101[52][6] = "Mar 31, 2005";
wc20050101[52][7] = "_top";
wc20050101[52][8] = "|1";
wc20050101[52][9] = "1";
wc20050101[52][10] = "R";
wc20050101[52][11] = "";
wc20050101[52][12] = "Susan R. Lichtenstein Named General Counsel and Corporate Secretary. Peter Arduini Named President of Medication Delivery.";
wc20050101[52][13] = "";
wc20050101[52][14] = "Read More";

wc20050101[53][0] = 20050330;
wc20050101[53][1] = "Halozyme Therapeutics and Baxter Healthcare Corporation Expand Relationship to Include Development and Supply Agreement ";
wc20050101[53][2] = "";
wc20050101[53][3] = "/press_room/press_releases/2005/03-30-05-halozyme.html";
wc20050101[53][4] = "h";
wc20050101[53][5] = "a";
wc20050101[53][6] = "Mar 30, 2005";
wc20050101[53][7] = "_top";
wc20050101[53][8] = "|1|7";
wc20050101[53][9] = "1";
wc20050101[53][10] = "R";
wc20050101[53][11] = "";
wc20050101[53][12] = "";
wc20050101[53][13] = "";
wc20050101[53][14] = "Read More";

wc20050101[54][0] = 20050328;
wc20050101[54][1] = "Baxter Assumes Marketing and Distribution Rights for Cangene\'s WinRho SDF in the U.S. ";
wc20050101[54][2] = "";
wc20050101[54][3] = "/press_room/press_releases/2005/03-28-05-winrho.html";
wc20050101[54][4] = "h";
wc20050101[54][5] = "a";
wc20050101[54][6] = "Mar 28, 2005";
wc20050101[54][7] = "_top";
wc20050101[54][8] = "|1|2";
wc20050101[54][9] = "1";
wc20050101[54][10] = "R";
wc20050101[54][11] = "";
wc20050101[54][12] = "";
wc20050101[54][13] = "";
wc20050101[54][14] = "Read More";

wc20050101[55][0] = 20050323;
wc20050101[55][1] = "Baxter Announces Two Key Executive Appointments ";
wc20050101[55][2] = "";
wc20050101[55][3] = "/press_room/press_releases/2005/03-23-05-exec_appointments.html";
wc20050101[55][4] = "h";
wc20050101[55][5] = "a";
wc20050101[55][6] = "Mar 23, 2005";
wc20050101[55][7] = "_top";
wc20050101[55][8] = "|1";
wc20050101[55][9] = "1";
wc20050101[55][10] = "R";
wc20050101[55][11] = "";
wc20050101[55][12] = "";
wc20050101[55][13] = "";
wc20050101[55][14] = "Read More";

wc20050101[56][0] = 20050321;
wc20050101[56][1] = "Baxter International Inc. Names Blake Devitt to Board of Directors ";
wc20050101[56][2] = "";
wc20050101[56][3] = "/press_room/press_releases/2005/03-21-05-blake_devitt.html";
wc20050101[56][4] = "h";
wc20050101[56][5] = "a";
wc20050101[56][6] = "Mar 21, 2005";
wc20050101[56][7] = "_top";
wc20050101[56][8] = "|1";
wc20050101[56][9] = "1";
wc20050101[56][10] = "R";
wc20050101[56][11] = "";
wc20050101[56][12] = "";
wc20050101[56][13] = "";
wc20050101[56][14] = "Read More";

wc20050101[57][0] = 20050314;
wc20050101[57][1] = "Baxter to Restate 2001 Through 2003 Financial Statements to Correct Income Tax Accounting Errors ";
wc20050101[57][2] = "";
wc20050101[57][3] = "/press_room/press_releases/2005/03-14-05-financial_statements.html";
wc20050101[57][4] = "h";
wc20050101[57][5] = "a";
wc20050101[57][6] = "Mar 14, 2005";
wc20050101[57][7] = "_top";
wc20050101[57][8] = "|1|3";
wc20050101[57][9] = "1";
wc20050101[57][10] = "R";
wc20050101[57][11] = "";
wc20050101[57][12] = "Restatement Favorably Impacts Stockholders\' Equity, But Has No Impact On Earnings Or Cash Flow Previously Reported For 2001 Through 2004.";
wc20050101[57][13] = "";
wc20050101[57][14] = "Read More";

wc20050101[58][0] = 20050308;
wc20050101[58][1] = "Baxter and Its Foundation Contribute More Than $14 Million in 2004 to Communities in Need ";
wc20050101[58][2] = "";
wc20050101[58][3] = "/press_room/press_releases/2005/03-08-05-contributions_2004.html";
wc20050101[58][4] = "h";
wc20050101[58][5] = "a";
wc20050101[58][6] = "Mar 08, 2005";
wc20050101[58][7] = "_top";
wc20050101[58][8] = "|1";
wc20050101[58][9] = "1";
wc20050101[58][10] = "R";
wc20050101[58][11] = "";
wc20050101[58][12] = "";
wc20050101[58][13] = "";
wc20050101[58][14] = "Read More";

wc20050101[59][0] = 20050303;
wc20050101[59][1] = "Baxter Reports Strong Momentum for ADVATE After First Year on the European Market ";
wc20050101[59][2] = "";
wc20050101[59][3] = "/press_room/press_releases/2005/03-03-05-advate.html";
wc20050101[59][4] = "h";
wc20050101[59][5] = "a";
wc20050101[59][6] = "Mar 03, 2005";
wc20050101[59][7] = "_top";
wc20050101[59][8] = "|1|2";
wc20050101[59][9] = "1";
wc20050101[59][10] = "R";
wc20050101[59][11] = "";
wc20050101[59][12] = "";
wc20050101[59][13] = "";
wc20050101[59][14] = "Read More";

wc20050101[60][0] = 20050301;
wc20050101[60][1] = "Baxter and The American National Red Cross Agree to Terminate Contract Manufacturing Arrangement for Plasma Products ";
wc20050101[60][2] = "";
wc20050101[60][3] = "/press_room/press_releases/2005/03-01-05-arc.html";
wc20050101[60][4] = "h";
wc20050101[60][5] = "a";
wc20050101[60][6] = "Mar 01, 2005";
wc20050101[60][7] = "_top";
wc20050101[60][8] = "|1|2";
wc20050101[60][9] = "1";
wc20050101[60][10] = "R";
wc20050101[60][11] = "";
wc20050101[60][12] = "";
wc20050101[60][13] = "";
wc20050101[60][14] = "Read More";

wc20050101[61][0] = 20050224;
wc20050101[61][1] = "EPA Recognizes Baxter Healthcare Corporation as a Corporate Leader of its Performance Track Program ";
wc20050101[61][2] = "";
wc20050101[61][3] = "/press_room/press_releases/2005/02-24-05-performance_track.html";
wc20050101[61][4] = "h";
wc20050101[61][5] = "a";
wc20050101[61][6] = "Feb 24, 2005";
wc20050101[61][7] = "_top";
wc20050101[61][8] = "|1";
wc20050101[61][9] = "1";
wc20050101[61][10] = "R";
wc20050101[61][11] = "";
wc20050101[61][12] = "";
wc20050101[61][13] = "";
wc20050101[61][14] = "Read More";

wc20050101[62][0] = 20050214;
wc20050101[62][1] = "Baxter Receives 510k Clearance from U.S. FDA for Wireless Connectivity and Monitoring for COLLEAGUE CX Infusion Pump ";
wc20050101[62][2] = "";
wc20050101[62][3] = "/press_room/press_releases/2005/02-14-05-wireless.html";
wc20050101[62][4] = "h";
wc20050101[62][5] = "a";
wc20050101[62][6] = "Feb 14, 2005";
wc20050101[62][7] = "_top";
wc20050101[62][8] = "|1|7";
wc20050101[62][9] = "1";
wc20050101[62][10] = "R";
wc20050101[62][11] = "";
wc20050101[62][12] = "Wireless Connectivity Gives Healthcare Providers Access to Real-Time Patient Information and Remote Monitoring to More Safely Manage Infusion Therapy";
wc20050101[62][13] = "";
wc20050101[62][14] = "Read More";

wc20050101[63][0] = 20050209;
wc20050101[63][1] = "Michigan\'s Henry Ford Health System Wins Prestigious Foster G. McGaw Prize for Excellence in Community Service ";
wc20050101[63][2] = "";
wc20050101[63][3] = "/press_room/press_releases/2005/02_09_05-mcgaw_award.html";
wc20050101[63][4] = "h";
wc20050101[63][5] = "a";
wc20050101[63][6] = "Feb 09, 2005";
wc20050101[63][7] = "_top";
wc20050101[63][8] = "|1";
wc20050101[63][9] = "1";
wc20050101[63][10] = "R";
wc20050101[63][11] = "";
wc20050101[63][12] = "Finalists from New York, Savannah, Ga., and Grand Island, Neb., Also Recognized";
wc20050101[63][13] = "";
wc20050101[63][14] = "Read More";

wc20050101[64][0] = 20050203;
wc20050101[64][1] = "Baxter and Cerus Sign New Agreement to Commercialize INTERCEPT Blood System ";
wc20050101[64][2] = "";
wc20050101[64][3] = "/press_room/press_releases/2005/02-03-05-intercept.html";
wc20050101[64][4] = "h";
wc20050101[64][5] = "a";
wc20050101[64][6] = "Feb 03, 2005";
wc20050101[64][7] = "_top";
wc20050101[64][8] = "|1|2";
wc20050101[64][9] = "1";
wc20050101[64][10] = "R";
wc20050101[64][11] = "";
wc20050101[64][12] = "";
wc20050101[64][13] = "";
wc20050101[64][14] = "Read More";

wc20050101[65][0] = 20050127;
wc20050101[65][1] = "Baxter Reports Fourth Quarter Results In Line With Expectations and Provides Financial Guidance for Full-Year 2005 ";
wc20050101[65][2] = "";
wc20050101[65][3] = "/press_room/press_releases/2005/01-27-05-yearendearnings.html";
wc20050101[65][4] = "h";
wc20050101[65][5] = "a";
wc20050101[65][6] = "Jan 27, 2005";
wc20050101[65][7] = "_top";
wc20050101[65][8] = "|1|3";
wc20050101[65][9] = "1";
wc20050101[65][10] = "R";
wc20050101[65][11] = "";
wc20050101[65][12] = "Company Generates $1.4 Billion in Cash Flow from Operations in 2004";
wc20050101[65][13] = "";
wc20050101[65][14] = "Read More";

wc20050101[66][0] = 20050110;
wc20050101[66][1] = "Baxter Confirms Fourth Quarter Earnings Guidance, Excluding Non-Cash Charges ";
wc20050101[66][2] = "";
wc20050101[66][3] = "/press_room/press_releases/2005/01-10-05-impairment.html";
wc20050101[66][4] = "h";
wc20050101[66][5] = "a";
wc20050101[66][6] = "Jan 10, 2005";
wc20050101[66][7] = "_top";
wc20050101[66][8] = "|1|3";
wc20050101[66][9] = "1";
wc20050101[66][10] = "R";
wc20050101[66][11] = "";
wc20050101[66][12] = "Company Plans to Record Fourth Quarter, Non-Cash Asset Impairment Charges For Influenza Vaccine Program and Other Assets";
wc20050101[66][13] = "";
wc20050101[66][14] = "Read More";

var wc20060101 = MultiDimensionalArray(74,13);
wcnewsarray[idx++] = 20060101;
wc20060101[0][0] = 20061214;
wc20060101[0][1] = "Health Economic Analyses Suggest That FEIBA VH May Represent a Cost-Effective Way To Treat Acute Bleeds in Hemophilia A Patients with Inhibitors ";
wc20060101[0][2] = "";
wc20060101[0][3] = "/press_room/press_releases/2006/12-14-06-feiba_vh.html";
wc20060101[0][4] = "h";
wc20060101[0][5] = "a";
wc20060101[0][6] = "Dec 14, 2006";
wc20060101[0][7] = "_top";
wc20060101[0][8] = "|1|2";
wc20060101[0][9] = "1";
wc20060101[0][10] = "R";
wc20060101[0][11] = "";
wc20060101[0][12] = "Further analyses of inter-individual variation needed to develop optimal treatment strategies";
wc20060101[0][13] = "";
wc20060101[0][14] = "Read More";

wc20060101[1][0] = 20061214;
wc20060101[1][1] = "Baxter Receives Conditional Approval for U.S. COLLEAGUE Infusion Pump Corrective Action Plan and Submits Updated 510(k) Pre-Market Notification ";
wc20060101[1][2] = "";
wc20060101[1][3] = "/press_room/press_releases/2006/12-14-06-colleague_cond_approval.html";
wc20060101[1][4] = "h";
wc20060101[1][5] = "a";
wc20060101[1][6] = "Dec 14, 2006";
wc20060101[1][7] = "_top";
wc20060101[1][8] = "|1|7";
wc20060101[1][9] = "1";
wc20060101[1][10] = "R";
wc20060101[1][11] = "";
wc20060101[1][12] = "";
wc20060101[1][13] = "";
wc20060101[1][14] = "Read More";

wc20060101[2][0] = 20061213;
wc20060101[2][1] = "Jeffrey Modell Foundation Opens Diagnostic Center for Primary Immunodeficiencies at the Louisiana State University Health Sciences Center ";
wc20060101[2][2] = "";
wc20060101[2][3] = "/press_room/press_releases/2006/12-13-06-modell_foundation.html";
wc20060101[2][4] = "h";
wc20060101[2][5] = "a";
wc20060101[2][6] = "Dec 13, 2006";
wc20060101[2][7] = "_top";
wc20060101[2][8] = "|1|2";
wc20060101[2][9] = "1";
wc20060101[2][10] = "R";
wc20060101[2][11] = "";
wc20060101[2][12] = "Grant from Baxter Supports Primary Immunodeficiency Diagnosis and Patient Access to Care";
wc20060101[2][13] = "";
wc20060101[2][14] = "Read More";

wc20060101[3][0] = 20061211;
wc20060101[3][1] = "Baxter Announces Therapeutic Development Program for First Blood-Free Recombinant Von Willebrand Factor ";
wc20060101[3][2] = "";
wc20060101[3][3] = "/press_room/press_releases/2006/12-11-06-von_willebrand_factor.html";
wc20060101[3][4] = "h";
wc20060101[3][5] = "a";
wc20060101[3][6] = "Dec 11, 2006";
wc20060101[3][7] = "_top";
wc20060101[3][8] = "|1|2";
wc20060101[3][9] = "1";
wc20060101[3][10] = "R";
wc20060101[3][11] = "";
wc20060101[3][12] = "Initial results of biochemical and preclinical characterization of therapeutic candidate presented at ASH";
wc20060101[3][13] = "";
wc20060101[3][14] = "Read More";

wc20060101[4][0] = 20061201;
wc20060101[4][1] = "Baxter Presents Preclinical Studies of Experimental Longer-Acting Hemophilia A Therapy ";
wc20060101[4][2] = "";
wc20060101[4][3] = "/press_room/press_releases/2006/12-11-06-hemophilia_A_therapy.html";
wc20060101[4][4] = "h";
wc20060101[4][5] = "a";
wc20060101[4][6] = "Dec 01, 2006";
wc20060101[4][7] = "_top";
wc20060101[4][8] = "|1|2";
wc20060101[4][9] = "1";
wc20060101[4][10] = "R";
wc20060101[4][11] = "";
wc20060101[4][12] = "Preclinical evidence suggests modified von Willebrand factor extends factor VIII half-life in a mouse model of hemophilia A";
wc20060101[4][13] = "";
wc20060101[4][14] = "Read More";

wc20060101[5][0] = 20061208;
wc20060101[5][1] = "Baxter to Withdraw NYSE ARCA Listing, Retains New York Stock Exchange Listing ";
wc20060101[5][2] = "";
wc20060101[5][3] = "/press_room/press_releases/2006/12-08-06-nyse_arca_listing.html";
wc20060101[5][4] = "h";
wc20060101[5][5] = "a";
wc20060101[5][6] = "Dec 08, 2006";
wc20060101[5][7] = "_top";
wc20060101[5][8] = "|1|3";
wc20060101[5][9] = "1";
wc20060101[5][10] = "R";
wc20060101[5][11] = "";
wc20060101[5][12] = "";
wc20060101[5][13] = "";
wc20060101[5][14] = "Read More";

wc20060101[6][0] = 20061128;
wc20060101[6][1] = "Baxter Declares Annual Dividend and Announces Modifications to Dividend Policy  ";
wc20060101[6][2] = "";
wc20060101[6][3] = "/press_room/press_releases/2006/11-28-06-annual_dividend.html";
wc20060101[6][4] = "h";
wc20060101[6][5] = "a";
wc20060101[6][6] = "Nov 28, 2006";
wc20060101[6][7] = "_top";
wc20060101[6][8] = "|1|3";
wc20060101[6][9] = "1";
wc20060101[6][10] = "R";
wc20060101[6][11] = "";
wc20060101[6][12] = "Company Expects to Increase Future Dividend and Resume Quarterly Payments ";
wc20060101[6][13] = "";
wc20060101[6][14] = "Read More";

wc20060101[7][0] = 20061121;
wc20060101[7][1] = "Baxter Receives Preparedness Contract From Austrian Ministry of Health For Pandemic Influenza Vaccine ";
wc20060101[7][2] = "";
wc20060101[7][3] = "/press_room/press_releases/2006/11-22-06-vaccine_austria.html";
wc20060101[7][4] = "h";
wc20060101[7][5] = "a";
wc20060101[7][6] = "Nov 21, 2006";
wc20060101[7][7] = "_top";
wc20060101[7][8] = "|1|2";
wc20060101[7][9] = "1";
wc20060101[7][10] = "R";
wc20060101[7][11] = "";
wc20060101[7][12] = "";
wc20060101[7][13] = "";
wc20060101[7][14] = "Read More";

wc20060101[8][0] = 20061120;
wc20060101[8][1] = "Baxter Inducts Donors from 13 Blood Centers Across the Country Into Donation Hall of Fame ";
wc20060101[8][2] = "";
wc20060101[8][3] = "/press_room/press_releases/2006/11-20-06-donor_hall_fame.html";
wc20060101[8][4] = "h";
wc20060101[8][5] = "a";
wc20060101[8][6] = "Nov 20, 2006";
wc20060101[8][7] = "_top";
wc20060101[8][8] = "|1|2";
wc20060101[8][9] = "1";
wc20060101[8][10] = "R";
wc20060101[8][11] = "";
wc20060101[8][12] = "Recognizing Extraordinary Commitment to Blood Donation ";
wc20060101[8][13] = "";
wc20060101[8][14] = "Read More";

wc20060101[9][0] = 20061114;
wc20060101[9][1] = "Baxter Announces Renal Discoveries Grant Winners ";
wc20060101[9][2] = "";
wc20060101[9][3] = "/press_room/press_releases/2006/11-14-06-renal_discoveries.html";
wc20060101[9][4] = "h";
wc20060101[9][5] = "a";
wc20060101[9][6] = "Nov 14, 2006";
wc20060101[9][7] = "_top";
wc20060101[9][8] = "|1|8";
wc20060101[9][9] = "1";
wc20060101[9][10] = "R";
wc20060101[9][11] = "";
wc20060101[9][12] = "Four Research Groups to Focus on Advancing Science and Improving Care for Patients with Kidney Disease";
wc20060101[9][13] = "";
wc20060101[9][14] = "Read More";

wc20060101[10][0] = 20061114;
wc20060101[10][1] = "Baiyunshan and Baxter Announce Plans to Form Parenteral Nutrition Joint Venture in China  ";
wc20060101[10][2] = "";
wc20060101[10][3] = "/press_room/press_releases/2006/11-14-06-china_joint_venture.html";
wc20060101[10][4] = "h";
wc20060101[10][5] = "a";
wc20060101[10][6] = "Nov 14, 2006";
wc20060101[10][7] = "_top";
wc20060101[10][8] = "|1|7";
wc20060101[10][9] = "1";
wc20060101[10][10] = "R";
wc20060101[10][11] = "";
wc20060101[10][12] = "";
wc20060101[10][13] = "";
wc20060101[10][14] = "Read More";

wc20060101[11][0] = 20061023;
wc20060101[11][1] = "Baxter Receives Marketing Approval for ADVATE&reg; in Japan ";
wc20060101[11][2] = "";
wc20060101[11][3] = "/press_room/press_releases/2006/10-23-06-advate_japan.html";
wc20060101[11][4] = "h";
wc20060101[11][5] = "a";
wc20060101[11][6] = "Oct 23, 2006";
wc20060101[11][7] = "_top";
wc20060101[11][8] = "|1|2";
wc20060101[11][9] = "1";
wc20060101[11][10] = "R";
wc20060101[11][11] = "";
wc20060101[11][12] = "";
wc20060101[11][13] = "";
wc20060101[11][14] = "Read More";

wc20060101[12][0] = 20061019;
wc20060101[12][1] = "Baxter Reports Strong Earnings for the Third Quarter with EPS of $0.57 Per Share ";
wc20060101[12][2] = "";
wc20060101[12][3] = "/press_room/press_releases/2006/10-19-06-third_qtr_earnings.html";
wc20060101[12][4] = "h";
wc20060101[12][5] = "a";
wc20060101[12][6] = "Oct 19, 2006";
wc20060101[12][7] = "_top";
wc20060101[12][8] = "|1|3";
wc20060101[12][9] = "1";
wc20060101[12][10] = "R";
wc20060101[12][11] = "";
wc20060101[12][12] = "Baxter Raises Full-Year EPS Guidance";
wc20060101[12][13] = "";
wc20060101[12][14] = "Read More";

wc20060101[13][0] = 20061016;
wc20060101[13][1] = "Baxter Commemorates 75 Years of Innovation and Leadership in Healthcare ";
wc20060101[13][2] = "";
wc20060101[13][3] = "/press_room/press_releases/2006/10-16-06-anniversary.html";
wc20060101[13][4] = "h";
wc20060101[13][5] = "a";
wc20060101[13][6] = "Oct 16, 2006";
wc20060101[13][7] = "_top";
wc20060101[13][8] = "|1";
wc20060101[13][9] = "1";
wc20060101[13][10] = "R";
wc20060101[13][11] = "";
wc20060101[13][12] = "Anniversary Activities Include Commitment of 75 Years Worth of Community Volunteering Through Global Service Project. Baxter CEO to Ring NYSE Closing Bell on October 20.";
wc20060101[13][13] = "";
wc20060101[13][14] = "Read More";

wc20060101[14][0] = 20061012;
wc20060101[14][1] = "Baxter Highlights Social, Economic and Environmental Performance in Seventh Annual Sustainability Report ";
wc20060101[14][2] = "";
wc20060101[14][3] = "/press_room/press_releases/2006/10-12-06-sustainability.html";
wc20060101[14][4] = "h";
wc20060101[14][5] = "a";
wc20060101[14][6] = "Oct 12, 2006";
wc20060101[14][7] = "_top";
wc20060101[14][8] = "|1|4";
wc20060101[14][9] = "1";
wc20060101[14][10] = "R";
wc20060101[14][11] = "";
wc20060101[14][12] = "Company Recognized for Sustainability Performance and Leadership in Medical Products Industry by Dow Jones Sustainability Index";
wc20060101[14][13] = "";
wc20060101[14][14] = "Read More";

wc20060101[15][0] = 20061011;
wc20060101[15][1] = "Baxter Announces Launch of BAXJECT II Needle-Less Transfer Device for ADVATE ";
wc20060101[15][2] = "";
wc20060101[15][3] = "/press_room/press_releases/2006/10-11-06-baxject_advate.html";
wc20060101[15][4] = "h";
wc20060101[15][5] = "a";
wc20060101[15][6] = "Oct 11, 2006";
wc20060101[15][7] = "_top";
wc20060101[15][8] = "|1|2";
wc20060101[15][9] = "1";
wc20060101[15][10] = "R";
wc20060101[15][11] = "";
wc20060101[15][12] = "Latest Convenience Feature for ADVATE Now Available in the United States and European Union";
wc20060101[15][13] = "";
wc20060101[15][14] = "Read More";

wc20060101[16][0] = 20061004;
wc20060101[16][1] = "Baxter Announces Safety and Immunogenicity Results from Phase I/II Clinical Trial of Cell-Based Candidate H5N1 Pandemic Vaccine ";
wc20060101[16][2] = "";
wc20060101[16][3] = "/press_room/press_releases/2006/10-04-06-h5n1_trial.html";
wc20060101[16][4] = "h";
wc20060101[16][5] = "a";
wc20060101[16][6] = "Oct 04, 2006";
wc20060101[16][7] = "_top";
wc20060101[16][8] = "|1|2";
wc20060101[16][9] = "1";
wc20060101[16][10] = "R";
wc20060101[16][11] = "";
wc20060101[16][12] = "";
wc20060101[16][13] = "";
wc20060101[16][14] = "Read More";

wc20060101[17][0] = 20061003;
wc20060101[17][1] = "Baxter\'s Board Adopts Majority Vote Standard for Election of Directors ";
wc20060101[17][2] = "";
wc20060101[17][3] = "/press_room/press_releases/2006/10-03-06-majority_vote.html";
wc20060101[17][4] = "h";
wc20060101[17][5] = "a";
wc20060101[17][6] = "Oct 03, 2006";
wc20060101[17][7] = "_top";
wc20060101[17][8] = "|1";
wc20060101[17][9] = "1";
wc20060101[17][10] = "R";
wc20060101[17][11] = "";
wc20060101[17][12] = "";
wc20060101[17][13] = "";
wc20060101[17][14] = "Read More";

wc20060101[18][0] = 20061003;
wc20060101[18][1] = "Baxter Announces Sale of Transfusion Therapies Business to Texas Pacific Group ";
wc20060101[18][2] = "";
wc20060101[18][3] = "/press_room/press_releases/2006/10-03-06-tt_sale.html";
wc20060101[18][4] = "h";
wc20060101[18][5] = "a";
wc20060101[18][6] = "Oct 03, 2006";
wc20060101[18][7] = "_top";
wc20060101[18][8] = "|1|2";
wc20060101[18][9] = "1";
wc20060101[18][10] = "R";
wc20060101[18][11] = "";
wc20060101[18][12] = "";
wc20060101[18][13] = "";
wc20060101[18][14] = "Read More";

wc20060101[19][0] = 20060929;
wc20060101[19][1] = "National Hemophilia Foundation Grants 2006 Awards Under Baxter-Sponsored NHF Clinical Fellowship Program ";
wc20060101[19][2] = "";
wc20060101[19][3] = "/press_room/press_releases/2006/09-29-06-nhf_awards.html";
wc20060101[19][4] = "h";
wc20060101[19][5] = "a";
wc20060101[19][6] = "Sep 29, 2006";
wc20060101[19][7] = "_top";
wc20060101[19][8] = "|1|2";
wc20060101[19][9] = "1";
wc20060101[19][10] = "R";
wc20060101[19][11] = "";
wc20060101[19][12] = "Baxter Renews Support of NHF Fellowship Program to Promote Excellence in Hemophilia Care";
wc20060101[19][13] = "";
wc20060101[19][14] = "Read More";

wc20060101[20][0] = 20060929;
wc20060101[20][1] = "Baxter Announces the Winners of Camp Superfly II Program for the Bleeding and Clotting Disorders Community ";
wc20060101[20][2] = "";
wc20060101[20][3] = "/press_room/press_releases/2006/09-29-06-camp_superflyII.html";
wc20060101[20][4] = "h";
wc20060101[20][5] = "a";
wc20060101[20][6] = "Sep 29, 2006";
wc20060101[20][7] = "_top";
wc20060101[20][8] = "|1|2";
wc20060101[20][9] = "1";
wc20060101[20][10] = "R";
wc20060101[20][11] = "";
wc20060101[20][12] = "Teams Earned More Than $140,000 for Summer Camp by Competing in Fun, Educational Challenges";
wc20060101[20][13] = "";
wc20060101[20][14] = "Read More";

wc20060101[21][0] = 20060918;
wc20060101[21][1] = "AABB and Baxter Sponsor Second Annual Blood Collectors Week ";
wc20060101[21][2] = "";
wc20060101[21][3] = "/press_room/press_releases/2006/09-18-06-blood_collectors_week.html";
wc20060101[21][4] = "h";
wc20060101[21][5] = "a";
wc20060101[21][6] = "Sep 18, 2006";
wc20060101[21][7] = "_top";
wc20060101[21][8] = "|1|2";
wc20060101[21][9] = "1";
wc20060101[21][10] = "R";
wc20060101[21][11] = "";
wc20060101[21][12] = "Blood Centers Nationwide Encourage Community Members To Show Support by Donating Blood";
wc20060101[21][13] = "";
wc20060101[21][14] = "Read More";

wc20060101[22][0] = 20060914;
wc20060101[22][1] = "Baxter Names Carlos Alonso President of Latin American Region ";
wc20060101[22][2] = "";
wc20060101[22][3] = "/press_room/press_releases/2006/09-14-06-carlos_alonso.html";
wc20060101[22][4] = "h";
wc20060101[22][5] = "a";
wc20060101[22][6] = "Sep 14, 2006";
wc20060101[22][7] = "_top";
wc20060101[22][8] = "|1";
wc20060101[22][9] = "1";
wc20060101[22][10] = "R";
wc20060101[22][11] = "";
wc20060101[22][12] = "";
wc20060101[22][13] = "";
wc20060101[22][14] = "Read More";

wc20060101[23][0] = 20060907;
wc20060101[23][1] = "Baxter Names Peter Nicklin Corporate Vice President and President, Baxter Europe ";
wc20060101[23][2] = "";
wc20060101[23][3] = "/press_room/press_releases/2006/09-07-06-peter_nicklin.html";
wc20060101[23][4] = "h";
wc20060101[23][5] = "a";
wc20060101[23][6] = "Sep 07, 2006";
wc20060101[23][7] = "_top";
wc20060101[23][8] = "|1";
wc20060101[23][9] = "1";
wc20060101[23][10] = "R";
wc20060101[23][11] = "";
wc20060101[23][12] = "";
wc20060101[23][13] = "";
wc20060101[23][14] = "Read More";

wc20060101[24][0] = 20060814;
wc20060101[24][1] = "Genetics Alliance Recognizes Baxter for Screening Program to Identify Patients At Risk for Hereditary Emphysema ";
wc20060101[24][2] = "";
wc20060101[24][3] = "/press_room/press_releases/2006/08-14-06-genetics_alliance.html";
wc20060101[24][4] = "h";
wc20060101[24][5] = "a";
wc20060101[24][6] = "Aug 14, 2006";
wc20060101[24][7] = "_top";
wc20060101[24][8] = "|1|2";
wc20060101[24][9] = "1";
wc20060101[24][10] = "R";
wc20060101[24][11] = "";
wc20060101[24][12] = "\'Art of Industry Award\' Recognizes Commitment to Patient Advocacy and Disease Awareness";
wc20060101[24][13] = "";
wc20060101[24][14] = "Read More";

wc20060101[25][0] = 20060802;
wc20060101[25][1] = "Baxter Receives Health Canada Approval for ADVATE ";
wc20060101[25][2] = "";
wc20060101[25][3] = "/press_room/press_releases/2006/08-02-06-advate_canada_bridge.html";
wc20060101[25][4] = "h";
wc20060101[25][5] = "a";
wc20060101[25][6] = "Aug 02, 2006";
wc20060101[25][7] = "_top";
wc20060101[25][8] = "|1|2";
wc20060101[25][9] = "1";
wc20060101[25][10] = "R";
wc20060101[25][11] = "";
wc20060101[25][12] = "";
wc20060101[25][13] = "";
wc20060101[25][14] = "Read More";

wc20060101[26][0] = 20060801;
wc20060101[26][1] = "FDA Approves ADEPT&reg; Adhesion Reduction Solution [4% Icodextrin Solution] ";
wc20060101[26][2] = "";
wc20060101[26][3] = "/press_room/press_releases/2006/08-01-06-adept.html";
wc20060101[26][4] = "h";
wc20060101[26][5] = "a";
wc20060101[26][6] = "Aug 01, 2006";
wc20060101[26][7] = "_top";
wc20060101[26][8] = "|1|2";
wc20060101[26][9] = "1";
wc20060101[26][10] = "R";
wc20060101[26][11] = "";
wc20060101[26][12] = "ADEPT offers Novel Fluid-Based Approach for Reducing Post-Surgical Adhesions";
wc20060101[26][13] = "";
wc20060101[26][14] = "Read More";

wc20060101[27][0] = 20060720;
wc20060101[27][1] = "Baxter\'s Second Quarter Sales and Earnings Exceed Expectations ";
wc20060101[27][2] = "";
wc20060101[27][3] = "/press_room/press_releases/2006/07-20-06-second_qtr_earnings.html";
wc20060101[27][4] = "h";
wc20060101[27][5] = "a";
wc20060101[27][6] = "Jul 20, 2006";
wc20060101[27][7] = "_top";
wc20060101[27][8] = "|1|3";
wc20060101[27][9] = "1";
wc20060101[27][10] = "R";
wc20060101[27][11] = "";
wc20060101[27][12] = "Baxter Raises Full-Year Guidance Reflecting Strong First-Half Operating Performance and Continued Momentum ";
wc20060101[27][13] = "";
wc20060101[27][14] = "Read More";

wc20060101[28][0] = 20060706;
wc20060101[28][1] = "Matching Grant Made to Benefit Hurricane-Affected Health Organizations ";
wc20060101[28][2] = "";
wc20060101[28][3] = "http://www.fndmidsouth.org/news_latest_RWJFdonation.htm";
wc20060101[28][4] = "h";
wc20060101[28][5] = "a";
wc20060101[28][6] = "Jul 06, 2006";
wc20060101[28][7] = "_blank";
wc20060101[28][8] = "|1";
wc20060101[28][9] = "1";
wc20060101[28][10] = "R";
wc20060101[28][11] = "";
wc20060101[28][12] = "";
wc20060101[28][13] = "";
wc20060101[28][14] = "Read More";

wc20060101[29][0] = 20060705;
wc20060101[29][1] = "Baxter Initiates Clinical Study With Cell-Based Candidate H5N1 Pandemic Vaccine ";
wc20060101[29][2] = "";
wc20060101[29][3] = "/press_room/press_releases/2006/07-05-06-h5n1_vaccine.html";
wc20060101[29][4] = "h";
wc20060101[29][5] = "a";
wc20060101[29][6] = "Jul 05, 2006";
wc20060101[29][7] = "_top";
wc20060101[29][8] = "|1|2";
wc20060101[29][9] = "1";
wc20060101[29][10] = "R";
wc20060101[29][11] = "";
wc20060101[29][12] = "";
wc20060101[29][13] = "";
wc20060101[29][14] = "Read More";

wc20060101[30][0] = 20060629;
wc20060101[30][1] = "Baxter and FDA Reach Agreement on Next Steps for U.S. Infusion Pumps ";
wc20060101[30][2] = "";
wc20060101[30][3] = "/press_room/press_releases/2006/06-29-06-consent_decree.html";
wc20060101[30][4] = "h";
wc20060101[30][5] = "a";
wc20060101[30][6] = "Jun 29, 2006";
wc20060101[30][7] = "_top";
wc20060101[30][8] = "|1|7";
wc20060101[30][9] = "1";
wc20060101[30][10] = "R";
wc20060101[30][11] = "";
wc20060101[30][12] = "";
wc20060101[30][13] = "";
wc20060101[30][14] = "Read More";

wc20060101[31][0] = 20060627;
wc20060101[31][1] = "Halozyme and Baxter Announce Availability of Hylenex for Subcutaneous Delivery of Medications and Fluids ";
wc20060101[31][2] = "";
wc20060101[31][3] = "/press_room/press_releases/2006/06-27-06-hylenex_approval.html";
wc20060101[31][4] = "h";
wc20060101[31][5] = "a";
wc20060101[31][6] = "Jun 27, 2006";
wc20060101[31][7] = "_top";
wc20060101[31][8] = "|1|7";
wc20060101[31][9] = "1";
wc20060101[31][10] = "R";
wc20060101[31][11] = "";
wc20060101[31][12] = "Companies Initially Target Hospice and Palliative Care Centers";
wc20060101[31][13] = "";
wc20060101[31][14] = "Read More";

wc20060101[32][0] = 20060620;
wc20060101[32][1] = "Baxter Supports Prioritisation of Primary Immunodeficiencies as EU Public Health Priority ";
wc20060101[32][2] = "";
wc20060101[32][3] = "/press_room/press_releases/2006/06-20-06-pids.html";
wc20060101[32][4] = "h";
wc20060101[32][5] = "a";
wc20060101[32][6] = "Jun 20, 2006";
wc20060101[32][7] = "_top";
wc20060101[32][8] = "|1|2";
wc20060101[32][9] = "1";
wc20060101[32][10] = "R";
wc20060101[32][11] = "";
wc20060101[32][12] = "";
wc20060101[32][13] = "";
wc20060101[32][14] = "Read More";

wc20060101[33][0] = 20060615;
wc20060101[33][1] = "Baxter Receives Tentative FDA Approvals for Ondansetron Injection in Vials and Premix Containers ";
wc20060101[33][2] = "";
wc20060101[33][3] = "/press_room/press_releases/2006/06-15-06-ondansetron_approval.html";
wc20060101[33][4] = "h";
wc20060101[33][5] = "a";
wc20060101[33][6] = "Jun 15, 2006";
wc20060101[33][7] = "_top";
wc20060101[33][8] = "|1|7";
wc20060101[33][9] = "1";
wc20060101[33][10] = "R";
wc20060101[33][11] = "";
wc20060101[33][12] = "Final Approval and Launch Expected to Occur Later This Year Following Expiration of Pediatric Exclusivity Period";
wc20060101[33][13] = "";
wc20060101[33][14] = "Read More";

wc20060101[34][0] = 20060606;
wc20060101[34][1] = "The Baxter International Foundation Awards Grants in Five Countries to Improve Access to Healthcare ";
wc20060101[34][2] = "";
wc20060101[34][3] = "/press_room/press_releases/2006/06_06_06-contributions_1q2006.html";
wc20060101[34][4] = "h";
wc20060101[34][5] = "a";
wc20060101[34][6] = "Jun 06, 2006";
wc20060101[34][7] = "_top";
wc20060101[34][8] = "|1";
wc20060101[34][9] = "1";
wc20060101[34][10] = "R";
wc20060101[34][11] = "";
wc20060101[34][12] = "First-Quarter Awards Include Grant To Support Launch Of AmeriCares Program To Enhance Healthcare Services In Africa And Asia";
wc20060101[34][13] = "";
wc20060101[34][14] = "Read More";

wc20060101[35][0] = 20060524;
wc20060101[35][1] = "Baxter is Recognized by the Association of Hemophilia Clinic Directors of Canada ";
wc20060101[35][2] = "";
wc20060101[35][3] = "/press_room/press_releases/2006/05-25-06-canada_recognition.html";
wc20060101[35][4] = "h";
wc20060101[35][5] = "a";
wc20060101[35][6] = "May 24, 2006";
wc20060101[35][7] = "_top";
wc20060101[35][8] = "|1|2";
wc20060101[35][9] = "1";
wc20060101[35][10] = "R";
wc20060101[35][11] = "";
wc20060101[35][12] = "Baxter to Provide Funding for Genetics Testing Program for Next Three Years";
wc20060101[35][13] = "";
wc20060101[35][14] = "Read More";

wc20060101[36][0] = 20060523;
wc20060101[36][1] = "Baxter Announces Winners of \'Picture Your Tomorrow, Today\' Global Photo Contest\' ";
wc20060101[36][2] = "";
wc20060101[36][3] = "/press_room/press_releases/2006/05-23-06-photo_contest.html";
wc20060101[36][4] = "h";
wc20060101[36][5] = "a";
wc20060101[36][6] = "May 23, 2006";
wc20060101[36][7] = "_top";
wc20060101[36][8] = "|1";
wc20060101[36][9] = "1";
wc20060101[36][10] = "R";
wc20060101[36][11] = "";
wc20060101[36][12] = "Grand Prize Awarded to U.S. and Canadian Residents";
wc20060101[36][13] = "";
wc20060101[36][14] = "Read More";

wc20060101[37][0] = 20060518;
wc20060101[37][1] = "Baxter and Jerini Advance Program to Develop Non-Intravenous Hemophilia Therapy ";
wc20060101[37][2] = "";
wc20060101[37][3] = "/press_room/press_releases/2006/05-18-06-non-intravenous_therapy.html";
wc20060101[37][4] = "h";
wc20060101[37][5] = "a";
wc20060101[37][6] = "May 18, 2006";
wc20060101[37][7] = "_top";
wc20060101[37][8] = "|1|2";
wc20060101[37][9] = "1";
wc20060101[37][10] = "R";
wc20060101[37][11] = "";
wc20060101[37][12] = "";
wc20060101[37][13] = "";
wc20060101[37][14] = "Read More";

wc20060101[38][0] = 20060517;
wc20060101[38][1] = "U.S. EPA Recognizes Baxter as a Recipient of 2006 Climate Protection Award ";
wc20060101[38][2] = "";
wc20060101[38][3] = "/press_room/press_releases/2006/05-17-06-epa_award.html";
wc20060101[38][4] = "h";
wc20060101[38][5] = "a";
wc20060101[38][6] = "May 17, 2006";
wc20060101[38][7] = "_top";
wc20060101[38][8] = "|1";
wc20060101[38][9] = "1";
wc20060101[38][10] = "R";
wc20060101[38][11] = "";
wc20060101[38][12] = "";
wc20060101[38][13] = "";
wc20060101[38][14] = "Read More";

wc20060101[39][0] = 20060517;
wc20060101[39][1] = "Baxter Appoints John Greisch President of International; Treasurer Robert Davis Succeeds Greisch as CFO ";
wc20060101[39][2] = "";
wc20060101[39][3] = "/press_room/press_releases/2006/05-17-06-greisch_davis.html";
wc20060101[39][4] = "h";
wc20060101[39][5] = "a";
wc20060101[39][6] = "May 17, 2006";
wc20060101[39][7] = "_top";
wc20060101[39][8] = "|1";
wc20060101[39][9] = "1";
wc20060101[39][10] = "R";
wc20060101[39][11] = "";
wc20060101[39][12] = "";
wc20060101[39][13] = "";
wc20060101[39][14] = "Read More";

wc20060101[40][0] = 20060517;
wc20060101[40][1] = "Baxter Collaborates With Gambro BCT on 7-Day Platelet Study to Speed Adoption ";
wc20060101[40][2] = "";
wc20060101[40][3] = "/press_room/press_releases/2006/05-17-06-platelet_study.html";
wc20060101[40][4] = "h";
wc20060101[40][5] = "a";
wc20060101[40][6] = "May 17, 2006";
wc20060101[40][7] = "_top";
wc20060101[40][8] = "|1|8";
wc20060101[40][9] = "1";
wc20060101[40][10] = "R";
wc20060101[40][11] = "";
wc20060101[40][12] = "7-Day Platelets to Help Increase Availability of Critical Blood Component ";
wc20060101[40][13] = "";
wc20060101[40][14] = "Read More";

wc20060101[41][0] = 20060515;
wc20060101[41][1] = "Baxter\'s Board Appoints New Corporate Officers, Including Heads of Regional Businesses in Latin America and Asia Pacific ";
wc20060101[41][2] = "";
wc20060101[41][3] = "/press_room/press_releases/2006/05-15-06-corporate_officers.html";
wc20060101[41][4] = "h";
wc20060101[41][5] = "a";
wc20060101[41][6] = "May 15, 2006";
wc20060101[41][7] = "_top";
wc20060101[41][8] = "|1";
wc20060101[41][9] = "1";
wc20060101[41][10] = "R";
wc20060101[41][11] = "";
wc20060101[41][12] = "";
wc20060101[41][13] = "";
wc20060101[41][14] = "Read More";

wc20060101[42][0] = 20060509;
wc20060101[42][1] = "Baxter Highlights Significant Financial Progress and Recent Investments at Annual Meeting of Shareholders ";
wc20060101[42][2] = "";
wc20060101[42][3] = "/press_room/press_releases/2006/05-09-06-annual_meeting.html";
wc20060101[42][4] = "h";
wc20060101[42][5] = "a";
wc20060101[42][6] = "May 09, 2006";
wc20060101[42][7] = "_top";
wc20060101[42][8] = "|1|3";
wc20060101[42][9] = "1";
wc20060101[42][10] = "R";
wc20060101[42][11] = "";
wc20060101[42][12] = "";
wc20060101[42][13] = "";
wc20060101[42][14] = "Read More";

wc20060101[43][0] = 20060509;
wc20060101[43][1] = "Baxter Receives FDA Approval for Ultra-High Dosage Strength of ADVATE for Hemophilia A ";
wc20060101[43][2] = "";
wc20060101[43][3] = "/press_room/press_releases/2006/05-09-06-advate.html";
wc20060101[43][4] = "h";
wc20060101[43][5] = "a";
wc20060101[43][6] = "May 09, 2006";
wc20060101[43][7] = "_top";
wc20060101[43][8] = "|1|2";
wc20060101[43][9] = "1";
wc20060101[43][10] = "R";
wc20060101[43][11] = "";
wc20060101[43][12] = "New 2000 IU Dosage Strength Increases Ease of Use for People with Hemophilia";
wc20060101[43][13] = "";
wc20060101[43][14] = "Read More";

wc20060101[44][0] = 20060504;
wc20060101[44][1] = "Baxter to Participate in Development of Cell-Based Vaccines for U.S. Department of Health and Human Services ";
wc20060101[44][2] = "";
wc20060101[44][3] = "/press_room/press_releases/2006/05-04-06-hhs_flu_vaccine.html";
wc20060101[44][4] = "h";
wc20060101[44][5] = "a";
wc20060101[44][6] = "May 04, 2006";
wc20060101[44][7] = "_top";
wc20060101[44][8] = "|1";
wc20060101[44][9] = "1";
wc20060101[44][10] = "R";
wc20060101[44][11] = "";
wc20060101[44][12] = "";
wc20060101[44][13] = "";
wc20060101[44][14] = "Read More";

wc20060101[45][0] = 20060424;
wc20060101[45][1] = "Linda H. Aiken, PhD, Selected As The Inaugural Recipient of the William B. Graham Prize For Health Services Research ";
wc20060101[45][2] = "";
wc20060101[45][3] = "/press_room/press_releases/2006/04_24_06-graham_prize.html";
wc20060101[45][4] = "h";
wc20060101[45][5] = "a";
wc20060101[45][6] = "Apr 24, 2006";
wc20060101[45][7] = "_top";
wc20060101[45][8] = "|1|8";
wc20060101[45][9] = "1";
wc20060101[45][10] = "R";
wc20060101[45][11] = "";
wc20060101[45][12] = "First-Quarter Awards Include Grant To Support Launch Of AmeriCares Program To Enhance Healthcare Services In Africa And Asia";
wc20060101[45][13] = "";
wc20060101[45][14] = "Read More";

wc20060101[46][0] = 20060420;
wc20060101[46][1] = "Baxter Reports First Quarter Earnings Per Diluted Share of $0.43, An Increase of 19 Percent ";
wc20060101[46][2] = "";
wc20060101[46][3] = "/press_room/press_releases/2006/04-20-06-first_qtr_earnings.html";
wc20060101[46][4] = "h";
wc20060101[46][5] = "a";
wc20060101[46][6] = "Apr 20, 2006";
wc20060101[46][7] = "_top";
wc20060101[46][8] = "|1|3";
wc20060101[46][9] = "1";
wc20060101[46][10] = "R";
wc20060101[46][11] = "";
wc20060101[46][12] = "Company Narrows Full-Year Earnings Guidance Range";
wc20060101[46][13] = "";
wc20060101[46][14] = "Read More";

wc20060101[47][0] = 20060418;
wc20060101[47][1] = "Baxter Announces New AVIVA Line of Intravenous Solutions ";
wc20060101[47][2] = "";
wc20060101[47][3] = "/press_room/press_releases/2006/04-18-06-aviva_approval.html";
wc20060101[47][4] = "h";
wc20060101[47][5] = "a";
wc20060101[47][6] = "Apr 18, 2006";
wc20060101[47][7] = "_top";
wc20060101[47][8] = "|1|7";
wc20060101[47][9] = "1";
wc20060101[47][10] = "R";
wc20060101[47][11] = "";
wc20060101[47][12] = "";
wc20060101[47][13] = "";
wc20060101[47][14] = "Read More";

wc20060101[48][0] = 20060413;
wc20060101[48][1] = "Baxter Highlights Work of World Federation of Hemophilia in Addressing Global Disparities in Hemophilia Care ";
wc20060101[48][2] = "";
wc20060101[48][3] = "/press_room/press_releases/2006/04-13-06-world_hemo_day.html";
wc20060101[48][4] = "h";
wc20060101[48][5] = "a";
wc20060101[48][6] = "Apr 13, 2006";
wc20060101[48][7] = "_top";
wc20060101[48][8] = "|1|2";
wc20060101[48][9] = "1";
wc20060101[48][10] = "R";
wc20060101[48][11] = "";
wc20060101[48][12] = "WFH\'s Global Alliance for Progress Continues To Impact Standards of Care in the Developing World";
wc20060101[48][13] = "";
wc20060101[48][14] = "Read More";

wc20060101[49][0] = 20060410;
wc20060101[49][1] = "Baxter Executive Named Working Mother of the Year ";
wc20060101[49][2] = "";
wc20060101[49][3] = "/press_room/press_releases/2006/04-10-06-working_mother_award.html";
wc20060101[49][4] = "h";
wc20060101[49][5] = "a";
wc20060101[49][6] = "Apr 10, 2006";
wc20060101[49][7] = "_top";
wc20060101[49][8] = "|1";
wc20060101[49][9] = "1";
wc20060101[49][10] = "R";
wc20060101[49][11] = "";
wc20060101[49][12] = "";
wc20060101[49][13] = "";
wc20060101[49][14] = "Read More";

wc20060101[50][0] = 20060405;
wc20060101[50][1] = "Baxter Launches Enhanced Grant Program To Promote Scientific Advancement and Training In Treatment of Kidney Disease ";
wc20060101[50][2] = "";
wc20060101[50][3] = "/press_room/press_releases/2006/04-05-06-grant_program.html";
wc20060101[50][4] = "h";
wc20060101[50][5] = "a";
wc20060101[50][6] = "Apr 05, 2006";
wc20060101[50][7] = "_top";
wc20060101[50][8] = "|1|8";
wc20060101[50][9] = "1";
wc20060101[50][10] = "R";
wc20060101[50][11] = "";
wc20060101[50][12] = "";
wc20060101[50][13] = "";
wc20060101[50][14] = "Read More";

wc20060101[51][0] = 20060404;
wc20060101[51][1] = "More Than 10,000 People Screened For AAT Deficiency Through Baxter-Sponsored Effort ";
wc20060101[51][2] = "";
wc20060101[51][3] = "/press_room/press_releases/2006/04-04-06-aat_screening.html";
wc20060101[51][4] = "h";
wc20060101[51][5] = "a";
wc20060101[51][6] = "Apr 04, 2006";
wc20060101[51][7] = "_top";
wc20060101[51][8] = "|1|2";
wc20060101[51][9] = "1";
wc20060101[51][10] = "R";
wc20060101[51][11] = "";
wc20060101[51][12] = "Baxter\'s Screening And Detection Program Helps Build Awareness and Promote Early Diagnosis of Genetic Disorder";
wc20060101[51][13] = "";
wc20060101[51][14] = "Read More";

wc20060101[52][0] = 20060403;
wc20060101[52][1] = "Baxter Names Jeanne K. Mason Corporate Vice President, Human Resources ";
wc20060101[52][2] = "";
wc20060101[52][3] = "/press_room/press_releases/2006/04-03-06-jeanne_mason.html";
wc20060101[52][4] = "h";
wc20060101[52][5] = "a";
wc20060101[52][6] = "Apr 03, 2006";
wc20060101[52][7] = "_top";
wc20060101[52][8] = "|1";
wc20060101[52][9] = "1";
wc20060101[52][10] = "R";
wc20060101[52][11] = "";
wc20060101[52][12] = "";
wc20060101[52][13] = "";
wc20060101[52][14] = "Read More";

wc20060101[53][0] = 20060330;
wc20060101[53][1] = "Baxter Names Karenann Terrell Chief Information Officer ";
wc20060101[53][2] = "";
wc20060101[53][3] = "/press_room/press_releases/2006/03-30-06-karenann_terrell.html";
wc20060101[53][4] = "h";
wc20060101[53][5] = "a";
wc20060101[53][6] = "Mar 30, 2006";
wc20060101[53][7] = "_top";
wc20060101[53][8] = "|1";
wc20060101[53][9] = "1";
wc20060101[53][10] = "R";
wc20060101[53][11] = "";
wc20060101[53][12] = "";
wc20060101[53][13] = "";
wc20060101[53][14] = "Read More";

wc20060101[54][0] = 20060330;
wc20060101[54][1] = "Baxter Kicks Off Second Annual CAMP SUPERFLY Program For The Bleeding And Clotting Disorders Community ";
wc20060101[54][2] = "";
wc20060101[54][3] = "/press_room/press_releases/2006/03-30-06-camp_superfly.html";
wc20060101[54][4] = "h";
wc20060101[54][5] = "a";
wc20060101[54][6] = "Mar 30, 2006";
wc20060101[54][7] = "_top";
wc20060101[54][8] = "|1|2";
wc20060101[54][9] = "1";
wc20060101[54][10] = "R";
wc20060101[54][11] = "";
wc20060101[54][12] = "Fun Educational Challenges Will Pay Off With More Than $150,000 in Grant Awards";
wc20060101[54][13] = "";
wc20060101[54][14] = "Read More";

wc20060101[55][0] = 20060330;
wc20060101[55][1] = "Baxter Names Cheryl White Corporate V.P. Quality ";
wc20060101[55][2] = "";
wc20060101[55][3] = "/press_room/press_releases/2006/03-29-06-cwhiteannouncement.html";
wc20060101[55][4] = "h";
wc20060101[55][5] = "a";
wc20060101[55][6] = "Mar 30, 2006";
wc20060101[55][7] = "_top";
wc20060101[55][8] = "|1";
wc20060101[55][9] = "1";
wc20060101[55][10] = "R";
wc20060101[55][11] = "";
wc20060101[55][12] = "";
wc20060101[55][13] = "";
wc20060101[55][14] = "Read More";

wc20060101[56][0] = 20060323;
wc20060101[56][1] = "Baxter Announces Launch of Authorized Generic Azithromycin for Injection ";
wc20060101[56][2] = "";
wc20060101[56][3] = "/press_room/press_releases/2006/03-23-06-azithromycin.html";
wc20060101[56][4] = "h";
wc20060101[56][5] = "a";
wc20060101[56][6] = "Mar 23, 2006";
wc20060101[56][7] = "_top";
wc20060101[56][8] = "|1|7";
wc20060101[56][9] = "1";
wc20060101[56][10] = "R";
wc20060101[56][11] = "";
wc20060101[56][12] = "";
wc20060101[56][13] = "";
wc20060101[56][14] = "Read More";

wc20060101[57][0] = 20060322;
wc20060101[57][1] = "Baxter Announces Investment of $60 Million To Expand Manufacturing Capacity In China ";
wc20060101[57][2] = "";
wc20060101[57][3] = "/press_room/press_releases/2006/03-22-06-china_expansion.html";
wc20060101[57][4] = "h";
wc20060101[57][5] = "a";
wc20060101[57][6] = "Mar 22, 2006";
wc20060101[57][7] = "_top";
wc20060101[57][8] = "|1";
wc20060101[57][9] = "1";
wc20060101[57][10] = "R";
wc20060101[57][11] = "";
wc20060101[57][12] = "";
wc20060101[57][13] = "";
wc20060101[57][14] = "Read More";

wc20060101[58][0] = 20060316;
wc20060101[58][1] = "International Survey of Practices in Hemophilia A Treatment Published in Haemophilia ";
wc20060101[58][2] = "";
wc20060101[58][3] = "/press_room/press_releases/2006/03-16-06-hemophilia_practices_survey.html";
wc20060101[58][4] = "h";
wc20060101[58][5] = "a";
wc20060101[58][6] = "Mar 16, 2006";
wc20060101[58][7] = "_top";
wc20060101[58][8] = "|1|2";
wc20060101[58][9] = "1";
wc20060101[58][10] = "R";
wc20060101[58][11] = "";
wc20060101[58][12] = "Study Builds on Encouraging Phase I Trial Injecting Patients\' Own (Autologous) Stem Cells into Areas of Their Hearts with Poor Blood Flow";
wc20060101[58][13] = "";
wc20060101[58][14] = "Read More";

wc20060101[59][0] = 20060316;
wc20060101[59][1] = "Baxter Commences First-Of-Its-Kind, Phase II Adult Stem Cell Trial in U.S. In Patients With Severe Coronary Artery Disease ";
wc20060101[59][2] = "";
wc20060101[59][3] = "/press_room/press_releases/2006/03-07-06-stem_cell_trial.html";
wc20060101[59][4] = "h";
wc20060101[59][5] = "a";
wc20060101[59][6] = "Mar 16, 2006";
wc20060101[59][7] = "_top";
wc20060101[59][8] = "|1|2";
wc20060101[59][9] = "1";
wc20060101[59][10] = "R";
wc20060101[59][11] = "";
wc20060101[59][12] = "Study Builds on Encouraging Phase I Trial Injecting Patients\' Own (Autologous) Stem Cells into Areas of Their Hearts with Poor Blood Flow";
wc20060101[59][13] = "";
wc20060101[59][14] = "Read More";

wc20060101[60][0] = 20060306;
wc20060101[60][1] = "Baxter Study Verifies Inactivation of Influenza H5N1 Virus During Manufacture of its Plasma-Derived Therapies ";
wc20060101[60][2] = "";
wc20060101[60][3] = "/press_room/press_releases/2006/03-06-06-flu_inactivation.html";
wc20060101[60][4] = "h";
wc20060101[60][5] = "a";
wc20060101[60][6] = "Mar 06, 2006";
wc20060101[60][7] = "_top";
wc20060101[60][8] = "|1|2";
wc20060101[60][9] = "1";
wc20060101[60][10] = "R";
wc20060101[60][11] = "";
wc20060101[60][12] = "";
wc20060101[60][13] = "";
wc20060101[60][14] = "Read More";

wc20060101[61][0] = 20060302;
wc20060101[61][1] = "Baxter And Its Foundation Contribute More Than $35 Million In 2005 To Communities in Need ";
wc20060101[61][2] = "";
wc20060101[61][3] = "/press_room/press_releases/2006/03_02_06-contributions_2006.html";
wc20060101[61][4] = "h";
wc20060101[61][5] = "a";
wc20060101[61][6] = "Mar 02, 2006";
wc20060101[61][7] = "_top";
wc20060101[61][8] = "|1";
wc20060101[61][9] = "1";
wc20060101[61][10] = "R";
wc20060101[61][11] = "";
wc20060101[61][12] = "";
wc20060101[61][13] = "";
wc20060101[61][14] = "Read More";

wc20060101[62][0] = 20060224;
wc20060101[62][1] = "Baxter Receives Contract From National Health Service in United Kingdom to Produce Stockpile of H5N1 Flu Vaccine ";
wc20060101[62][2] = "";
wc20060101[62][3] = "/press_room/press_releases/2006/02-24-06-uk_flu_vaccine.html";
wc20060101[62][4] = "h";
wc20060101[62][5] = "a";
wc20060101[62][6] = "Feb 24, 2006";
wc20060101[62][7] = "_top";
wc20060101[62][8] = "|1|2";
wc20060101[62][9] = "1";
wc20060101[62][10] = "R";
wc20060101[62][11] = "";
wc20060101[62][12] = "";
wc20060101[62][13] = "";
wc20060101[62][14] = "Read More";

wc20060101[63][0] = 20060220;
wc20060101[63][1] = "Baxter Supports Earthquake Victims in India and Pakistan Through Donation of Meningitis Vaccines, Foundation Grant and Employee Matching Gifts ";
wc20060101[63][2] = "";
wc20060101[63][3] = "/press_room/press_releases/2006/01_20_06-earthquake_relief.html";
wc20060101[63][4] = "h";
wc20060101[63][5] = "a";
wc20060101[63][6] = "Feb 20, 2006";
wc20060101[63][7] = "_top";
wc20060101[63][8] = "|1";
wc20060101[63][9] = "1";
wc20060101[63][10] = "R";
wc20060101[63][11] = "";
wc20060101[63][12] = "";
wc20060101[63][13] = "";
wc20060101[63][14] = "Read More";

wc20060101[64][0] = 20060216;
wc20060101[64][1] = "Baxter Issues Shares to Settle Equity Units ";
wc20060101[64][2] = "";
wc20060101[64][3] = "/press_room/press_releases/2006/02-16-06-equity_units.html";
wc20060101[64][4] = "h";
wc20060101[64][5] = "a";
wc20060101[64][6] = "Feb 16, 2006";
wc20060101[64][7] = "_top";
wc20060101[64][8] = "|1|3";
wc20060101[64][9] = "1";
wc20060101[64][10] = "R";
wc20060101[64][11] = "";
wc20060101[64][12] = "";
wc20060101[64][13] = "";
wc20060101[64][14] = "Read More";

wc20060101[65][0] = 20060215;
wc20060101[65][1] = "Baxter\'s Board Authorizes $1.5 Billion Share Repurchase Program ";
wc20060101[65][2] = "";
wc20060101[65][3] = "/press_room/press_releases/2006/02-15-06-share_repurchase.html";
wc20060101[65][4] = "h";
wc20060101[65][5] = "a";
wc20060101[65][6] = "Feb 15, 2006";
wc20060101[65][7] = "_top";
wc20060101[65][8] = "|1|3";
wc20060101[65][9] = "1";
wc20060101[65][10] = "R";
wc20060101[65][11] = "";
wc20060101[65][12] = "";
wc20060101[65][13] = "";
wc20060101[65][14] = "Read More";

wc20060101[66][0] = 20060215;
wc20060101[66][1] = "Cerus Obtains Exclusive Rights to INTERCEPT Blood System from Baxter ";
wc20060101[66][2] = "";
wc20060101[66][3] = "/press_room/press_releases/2006/02-13-06-intercept.html";
wc20060101[66][4] = "h";
wc20060101[66][5] = "a";
wc20060101[66][6] = "Feb 15, 2006";
wc20060101[66][7] = "_top";
wc20060101[66][8] = "|1|2";
wc20060101[66][9] = "1";
wc20060101[66][10] = "R";
wc20060101[66][11] = "";
wc20060101[66][12] = "";
wc20060101[66][13] = "";
wc20060101[66][14] = "Read More";

wc20060101[67][0] = 20060208;
wc20060101[67][1] = "Halozyme Therapeutics and Baxter Release Results from the INFUSE-LR Study ";
wc20060101[67][2] = "";
wc20060101[67][3] = "/press_room/press_releases/2006/02-08-06-infuse_study.html";
wc20060101[67][4] = "h";
wc20060101[67][5] = "a";
wc20060101[67][6] = "Feb 08, 2006";
wc20060101[67][7] = "_top";
wc20060101[67][8] = "|1|7";
wc20060101[67][9] = "1";
wc20060101[67][10] = "R";
wc20060101[67][11] = "";
wc20060101[67][12] = "Use of Hylenex Accelerates Subcutaneous Flow Rates with Acceptable Tolerability";
wc20060101[67][13] = "";
wc20060101[67][14] = "Read More";

wc20060101[68][0] = 20060202;
wc20060101[68][1] = "Baxter Announces Classification of Letter to Customers Regarding COLLEAGUE Infusion Pumps ";
wc20060101[68][2] = "";
wc20060101[68][3] = "/press_room/press_releases/2006/02-02-06-colleague_recall.html";
wc20060101[68][4] = "h";
wc20060101[68][5] = "a";
wc20060101[68][6] = "Feb 02, 2006";
wc20060101[68][7] = "_top";
wc20060101[68][8] = "|1|7";
wc20060101[68][9] = "1";
wc20060101[68][10] = "R";
wc20060101[68][11] = "";
wc20060101[68][12] = "FDA Classifies December 13, 2005 Customer Letter as Class I Recall ";
wc20060101[68][13] = "";
wc20060101[68][14] = "Read More";

wc20060101[69][0] = 20060131;
wc20060101[69][1] = "Baxter\'s ADVATE Achieves One Billion Unit Milestone ";
wc20060101[69][2] = "";
wc20060101[69][3] = "/press_room/press_releases/2006/01-31-06-advate_billion.html";
wc20060101[69][4] = "h";
wc20060101[69][5] = "a";
wc20060101[69][6] = "Jan 31, 2006";
wc20060101[69][7] = "_top";
wc20060101[69][8] = "|1|2";
wc20060101[69][9] = "1";
wc20060101[69][10] = "R";
wc20060101[69][11] = "";
wc20060101[69][12] = "ADVATE sales exceed one billion activity units;New data affirms the therapy\'s low inhibitor rate";
wc20060101[69][13] = "";
wc20060101[69][14] = "Read More";

wc20060101[70][0] = 20060126;
wc20060101[70][1] = "Baxter Reports Financial Results for the Fourth Quarter and Full-Year 2005 ";
wc20060101[70][2] = "";
wc20060101[70][3] = "/press_room/press_releases/2006/01-26-06-yearendearnings.html";
wc20060101[70][4] = "h";
wc20060101[70][5] = "a";
wc20060101[70][6] = "Jan 26, 2006";
wc20060101[70][7] = "_top";
wc20060101[70][8] = "|1|3";
wc20060101[70][9] = "1";
wc20060101[70][10] = "R";
wc20060101[70][11] = "";
wc20060101[70][12] = "Baxter\'s Adjusted Earnings and Cash Flow Exceed Company\'s Previously Issued Guidance ";
wc20060101[70][13] = "";
wc20060101[70][14] = "Read More";

wc20060101[71][0] = 20060125;
wc20060101[71][1] = "Baxter Receives Marketing Authorization from the European Commission for KIOVIG to Treat Immunodeficiencies ";
wc20060101[71][2] = "";
wc20060101[71][3] = "/press_room/press_releases/2006/01-25-06-kiovig.html";
wc20060101[71][4] = "h";
wc20060101[71][5] = "a";
wc20060101[71][6] = "Jan 25, 2006";
wc20060101[71][7] = "_top";
wc20060101[71][8] = "|1|2";
wc20060101[71][9] = "1";
wc20060101[71][10] = "R";
wc20060101[71][11] = "";
wc20060101[71][12] = "";
wc20060101[71][13] = "";
wc20060101[71][14] = "Read More";

wc20060101[72][0] = 20060125;
wc20060101[72][1] = "Baxter Mourns Passing of William B. Graham, Pioneer and Long-Time Leader in Healthcare ";
wc20060101[72][2] = "";
wc20060101[72][3] = "/press_room/press_releases/2006/01-25-06-wbgraham.html";
wc20060101[72][4] = "h";
wc20060101[72][5] = "a";
wc20060101[72][6] = "Jan 25, 2006";
wc20060101[72][7] = "_top";
wc20060101[72][8] = "|1";
wc20060101[72][9] = "1";
wc20060101[72][10] = "R";
wc20060101[72][11] = "";
wc20060101[72][12] = "Former Chairman and CEO and Honorary Member of Baxter International\'s Board of Directors Changed Course of Modern Healthcare";
wc20060101[72][13] = "";
wc20060101[72][14] = "Read More";

wc20060101[73][0] = 20060117;
wc20060101[73][1] = "California\'s Venice Family Clinic Wins Prestigious Foster G. McGaw Prize for Excellence in Community Service ";
wc20060101[73][2] = "";
wc20060101[73][3] = "/press_room/press_releases/2006/01_17_06-mcgaw_award.html";
wc20060101[73][4] = "h";
wc20060101[73][5] = "a";
wc20060101[73][6] = "Jan 17, 2006";
wc20060101[73][7] = "_top";
wc20060101[73][8] = "|1";
wc20060101[73][9] = "1";
wc20060101[73][10] = "R";
wc20060101[73][11] = "";
wc20060101[73][12] = "Finalists From Farmington, Maine, Columbus, Ind., and Greenville, N.C. Also Recognized";
wc20060101[73][13] = "";
wc20060101[73][14] = "Read More";

wc20060101[74][0] = 20060109;
wc20060101[74][1] = "Baxter Expands BioSurgery Product Portfolio with FDA 510(K) Marketing Clearance for TricOs&trade; T Bone Void Filler ";
wc20060101[74][2] = "";
wc20060101[74][3] = "/press_room/press_releases/2006/01-09-06-tricos.html";
wc20060101[74][4] = "h";
wc20060101[74][5] = "a";
wc20060101[74][6] = "Jan 09, 2006";
wc20060101[74][7] = "_top";
wc20060101[74][8] = "|1|2";
wc20060101[74][9] = "1";
wc20060101[74][10] = "R";
wc20060101[74][11] = "";
wc20060101[74][12] = "Tricos T Represents Baxter\'s First Commercially Available Orthobiologic Product in the United States ";
wc20060101[74][13] = "";
wc20060101[74][14] = "Read More";

var wc20070101 = MultiDimensionalArray(13,13);
wcnewsarray[idx++] = 20070101;
wc20070101[0][0] = 20070227;
wc20070101[0][1] = "Baxter Receives 510(K) Clearance from FDA for COLLEAGUE Infusion Pumps Surgery ";
wc20070101[0][2] = "";
wc20070101[0][3] = "/press_room/press_releases/2007/02-27-07-colleague.html";
wc20070101[0][4] = "h";
wc20070101[0][5] = "a";
wc20070101[0][6] = "Feb 27, 2007";
wc20070101[0][7] = "_top";
wc20070101[0][8] = "|1|7";
wc20070101[0][9] = "1";
wc20070101[0][10] = "R";
wc20070101[0][11] = "";
wc20070101[0][12] = "Baxter Prepares to Upgrade COLLEAGUE Pumps in the U.S.";
wc20070101[0][13] = "";
wc20070101[0][14] = "Read More";

wc20070101[1][0] = 20070215;
wc20070101[1][1] = "Baxter Recognized As Sustainability Leader by Innovest and &lt;i&gt;Corporate Responsibility Officer&lt;/i&gt; Magazine ";
wc20070101[1][2] = "";
wc20070101[1][3] = "/press_room/press_releases/2007/02-15-07-global_100.html";
wc20070101[1][4] = "h";
wc20070101[1][5] = "a";
wc20070101[1][6] = "Feb 15, 2007";
wc20070101[1][7] = "_top";
wc20070101[1][8] = "|1|4";
wc20070101[1][9] = "1";
wc20070101[1][10] = "R";
wc20070101[1][11] = "";
wc20070101[1][12] = "Baxter Only U.S. Healthcare Company on &quot;Global 100&quot; Each Year Since List\'s Inception&lt;br&gt;Ranked as &quot;100 Best Corporate Citizen&quot; for Corporate Responsibility Best Practices";
wc20070101[1][13] = "";
wc20070101[1][14] = "Read More";

wc20070101[2][0] = 20070214;
wc20070101[2][1] = "Halozyme Therapeutics and Baxter Present Promising Results for the Use of HYLENEX from the Infuse-Morphine Study ";
wc20070101[2][2] = "";
wc20070101[2][3] = "/press_room/press_releases/2007/02-14-07-infuse_morphine.html";
wc20070101[2][4] = "h";
wc20070101[2][5] = "a";
wc20070101[2][6] = "Feb 14, 2007";
wc20070101[2][7] = "_top";
wc20070101[2][8] = "|1|7";
wc20070101[2][9] = "1";
wc20070101[2][10] = "R";
wc20070101[2][11] = "";
wc20070101[2][12] = "HYLENEX Accelerates the Time to Peak Blood Concentration for Subcutaneous Morphine with Acceptable Tolerability";
wc20070101[2][13] = "";
wc20070101[2][14] = "Read More";

wc20070101[3][0] = 20070214;
wc20070101[3][1] = "Halozyme And Baxter Expand Global HYLENEX Collaboration ";
wc20070101[3][2] = "";
wc20070101[3][3] = "/press_room/press_releases/2007/02-14-07-hylenex_baxter.html";
wc20070101[3][4] = "h";
wc20070101[3][5] = "a";
wc20070101[3][6] = "Feb 14, 2007";
wc20070101[3][7] = "_top";
wc20070101[3][8] = "|1|7";
wc20070101[3][9] = "1";
wc20070101[3][10] = "R";
wc20070101[3][11] = "";
wc20070101[3][12] = "Total Collaboration Valued at Up to $65 Million, Including a $20 Million Equity Investment in Halozyme";
wc20070101[3][13] = "";
wc20070101[3][14] = "Read More";

wc20070101[4][0] = 20070213;
wc20070101[4][1] = "Baxter Declares Quarterly Dividend and Increases Annual Rate by 15 Percent ";
wc20070101[4][2] = "";
wc20070101[4][3] = "/press_releases/2007/02-13-07-q1_dividend.html";
wc20070101[4][4] = "h";
wc20070101[4][5] = "a";
wc20070101[4][6] = "Feb 13, 2007";
wc20070101[4][7] = "_top";
wc20070101[4][8] = "|1|3";
wc20070101[4][9] = "1";
wc20070101[4][10] = "R";
wc20070101[4][11] = "";
wc20070101[4][12] = "";
wc20070101[4][13] = "";
wc20070101[4][14] = "Read More";

wc20070101[5][0] = 20070213;
wc20070101[5][1] = "Baxter Names Robert Hombach Treasurer ";
wc20070101[5][2] = "";
wc20070101[5][3] = "/press_room/press_releases/2007/02-13-07-hombach.html";
wc20070101[5][4] = "h";
wc20070101[5][5] = "a";
wc20070101[5][6] = "Feb 13, 2007";
wc20070101[5][7] = "_top";
wc20070101[5][8] = "|1|3";
wc20070101[5][9] = "1";
wc20070101[5][10] = "R";
wc20070101[5][11] = "";
wc20070101[5][12] = "";
wc20070101[5][13] = "";
wc20070101[5][14] = "Read More";

wc20070101[6][0] = 20070209;
wc20070101[6][1] = "Two Baxter Facilities Recognized With Shingo Prize for Excellence in Manufacturing ";
wc20070101[6][2] = "";
wc20070101[6][3] = "/press_room/press_releases/2007/02-09-07-shingo_prize.html";
wc20070101[6][4] = "h";
wc20070101[6][5] = "a";
wc20070101[6][6] = "Feb 09, 2007";
wc20070101[6][7] = "_top";
wc20070101[6][8] = "|1|4";
wc20070101[6][9] = "";
wc20070101[6][10] = "R";
wc20070101[6][11] = "";
wc20070101[6][12] = "Baxter\'s North Cove Facility Becomes First Two-Time Winner of Shingo Prize";
wc20070101[6][13] = "";
wc20070101[6][14] = "Read More";

wc20070101[7][0] = 20070207;
wc20070101[7][1] = "Baxter Continues Collaborations With Global Health Authorities To Advance Pandemic Preparedness ";
wc20070101[7][2] = "";
wc20070101[7][3] = "/press_room/press_releases/2007/02-07-07-indonesia.html";
wc20070101[7][4] = "h";
wc20070101[7][5] = "a";
wc20070101[7][6] = "Feb 07, 2007";
wc20070101[7][7] = "_top";
wc20070101[7][8] = "|1|8";
wc20070101[7][9] = "1";
wc20070101[7][10] = "R";
wc20070101[7][11] = "";
wc20070101[7][12] = "Company Clarifies Memorandum of Understanding With Indonesia";
wc20070101[7][13] = "";
wc20070101[7][14] = "Read More";

wc20070101[8][0] = 20070207;
wc20070101[8][1] = "Donald M. Berwick, MD, MPP, Selected as 2007 Recipient of The William B. Graham Prize for Health Services Research ";
wc20070101[8][2] = "";
wc20070101[8][3] = "/press_room/press_releases/2007/02-07-07-graham_prize.html";
wc20070101[8][4] = "h";
wc20070101[8][5] = "a";
wc20070101[8][6] = "Feb 07, 2007";
wc20070101[8][7] = "_top";
wc20070101[8][8] = "|1|4";
wc20070101[8][9] = "";
wc20070101[8][10] = "R";
wc20070101[8][11] = "";
wc20070101[8][12] = "";
wc20070101[8][13] = "";
wc20070101[8][14] = "Read More";

wc20070101[9][0] = 20070206;
wc20070101[9][1] = "Baxter Receives Clearance From U.S. FDA for Ipump Pain Management System 510(k) ";
wc20070101[9][2] = "";
wc20070101[9][3] = "/press_room/press_releases/2007/02-06-07-ipump_approval.html";
wc20070101[9][4] = "h";
wc20070101[9][5] = "a";
wc20070101[9][6] = "Feb 06, 2007";
wc20070101[9][7] = "_top";
wc20070101[9][8] = "|1|7";
wc20070101[9][9] = "";
wc20070101[9][10] = "R";
wc20070101[9][11] = "";
wc20070101[9][12] = "Baxter Plans to Upgrade Existing Ipump Pain Management Systems and Resume Commercial Sales in Existing and New Geographies";
wc20070101[9][13] = "";
wc20070101[9][14] = "Read More";

wc20070101[10][0] = 20070125;
wc20070101[10][1] = "Baxter&acute;s Fourth Quarter Financial Results Exceed Expectations ";
wc20070101[10][2] = "";
wc20070101[10][3] = "/press_room/press_releases/2007/01-25-07-yearendearnings.html";
wc20070101[10][4] = "h";
wc20070101[10][5] = "a";
wc20070101[10][6] = "Jan 25, 2007";
wc20070101[10][7] = "_top";
wc20070101[10][8] = "|1|3";
wc20070101[10][9] = "";
wc20070101[10][10] = "R";
wc20070101[10][11] = "";
wc20070101[10][12] = "Company Achieves Record Sales and Earnings in 2006 and Provides Positive Financial Outlook for 2007";
wc20070101[10][13] = "";
wc20070101[10][14] = "Read More";

wc20070101[11][0] = 20070124;
wc20070101[11][1] = "Memorial Healthcare System in Hollywood, Florida Receives Prestigious Foster G. McGaw Award for Excellence in Community Service ";
wc20070101[11][2] = "";
wc20070101[11][3] = "/press_room/press_releases/2007/01-24-07-mcgaw_award.html";
wc20070101[11][4] = "h";
wc20070101[11][5] = "a";
wc20070101[11][6] = "Jan 24, 2007";
wc20070101[11][7] = "_top";
wc20070101[11][8] = "|1|4";
wc20070101[11][9] = "";
wc20070101[11][10] = "R";
wc20070101[11][11] = "";
wc20070101[11][12] = "Finalists From Bronx, N.Y., Springfield, Mass., and Lewiston, Maine Also Recognized";
wc20070101[11][13] = "";
wc20070101[11][14] = "Read More";

wc20070101[12][0] = 20070118;
wc20070101[12][1] = "Jeffrey Modell Foundation Opens Diagnostic Center for Primary Immunodeficiencies at Children\'s Hospital of Wisconsin ";
wc20070101[12][2] = "";
wc20070101[12][3] = "/press_room/press_releases/2007/01-18-07-childrens_hospital.html";
wc20070101[12][4] = "h";
wc20070101[12][5] = "a";
wc20070101[12][6] = "Jan 18, 2007";
wc20070101[12][7] = "_top";
wc20070101[12][8] = "|1|2";
wc20070101[12][9] = "";
wc20070101[12][10] = "R";
wc20070101[12][11] = "";
wc20070101[12][12] = "Grant from Baxter Supports Primary Immunodeficiency Diagnosis and Patient Access to Care";
wc20070101[12][13] = "";
wc20070101[12][14] = "Read More";

wc20070101[13][0] = 20070118;
wc20070101[13][1] = "CSC&rsquo;s DVC and Baxter Begin Phase 1 Clinical Trial for Chemical Defense Product ";
wc20070101[13][2] = "";
wc20070101[13][3] = "/press_room/press_releases/2007/01-18-07-chemical_defense.html";
wc20070101[13][4] = "h";
wc20070101[13][5] = "a";
wc20070101[13][6] = "Jan 18, 2007";
wc20070101[13][7] = "_top";
wc20070101[13][8] = "|1|2";
wc20070101[13][9] = "";
wc20070101[13][10] = "R";
wc20070101[13][11] = "";
wc20070101[13][12] = "";
wc20070101[13][13] = "";
wc20070101[13][14] = "Read More";

var wc20070301 = MultiDimensionalArray(17,13);
wcnewsarray[idx++] = 20070301;
wc20070301[0][0] = 20070514;
wc20070301[0][1] = "Jeffrey Modell Foundation Opens Diagnostic Center for Primary Immunodeficiencies at the University of California-San Francisco ";
wc20070301[0][2] = "";
wc20070301[0][3] = "/press_room/press_releases/2007/05-14-07-UC_san_francisco.html";
wc20070301[0][4] = "h";
wc20070301[0][5] = "a";
wc20070301[0][6] = "May 14, 2007";
wc20070301[0][7] = "_top";
wc20070301[0][8] = "|1|2";
wc20070301[0][9] = "";
wc20070301[0][10] = "R";
wc20070301[0][11] = "";
wc20070301[0][12] = "Grant from Baxter Supports Primary Immunodeficiency Diagnosis and Patient Access to Care";
wc20070301[0][13] = "";
wc20070301[0][14] = "Read More";

wc20070301[1][0] = 20070511;
wc20070301[1][1] = "Jeffrey Modell Foundation Funds Molecular Diagnostic Laboratory for Primary Immunodeficiencies at Seattle Children\'s Hospital Research Institute ";
wc20070301[1][2] = "";
wc20070301[1][3] = "/press_room/press_releases/2007//05-11-07-seattle_childrens_hospital.html";
wc20070301[1][4] = "h";
wc20070301[1][5] = "a";
wc20070301[1][6] = "May 11, 2007";
wc20070301[1][7] = "_top";
wc20070301[1][8] = "|1|2";
wc20070301[1][9] = "";
wc20070301[1][10] = "R";
wc20070301[1][11] = "";
wc20070301[1][12] = "Grant from Baxter Supports Primary Immunodeficiency Diagnosis and Patient Access to Care";
wc20070301[1][13] = "";
wc20070301[1][14] = "Read More";

wc20070301[2][0] = 20070509;
wc20070301[2][1] = "Baxter Receives Approval to Process ARALAST NP ";
wc20070301[2][2] = "";
wc20070301[2][3] = "/press_room/press_releases/2007/05-09-07-aralast.html";
wc20070301[2][4] = "h";
wc20070301[2][5] = "a";
wc20070301[2][6] = "May 09, 2007";
wc20070301[2][7] = "_top";
wc20070301[2][8] = "|1|2";
wc20070301[2][9] = "";
wc20070301[2][10] = "R";
wc20070301[2][11] = "";
wc20070301[2][12] = "";
wc20070301[2][13] = "";
wc20070301[2][14] = "Read More";

wc20070301[3][0] = 20070501;
wc20070301[3][1] = "Baxter Executives Provide Update on Progress at Annual Shareholder Meeting ";
wc20070301[3][2] = "";
wc20070301[3][3] = "/press_room/press_releases/2007/05-01-07-annual_meeting.html";
wc20070301[3][4] = "h";
wc20070301[3][5] = "a";
wc20070301[3][6] = "May 01, 2007";
wc20070301[3][7] = "_top";
wc20070301[3][8] = "|1|3";
wc20070301[3][9] = "1";
wc20070301[3][10] = "R";
wc20070301[3][11] = "";
wc20070301[3][12] = "Baxter&rsquo;s Board of Directors Declares Quarterly Dividend&lt;br&gt;Carlos Alonso Elected as a Corporate Officer";
wc20070301[3][13] = "";
wc20070301[3][14] = "Read More";

wc20070301[4][0] = 20070427;
wc20070301[4][1] = "Baxter Introduces HYLENEX for use in Ophthalmic Surgery ";
wc20070301[4][2] = "";
wc20070301[4][3] = "/press_room/press_releases/2007/04-27-07-hylenex.html";
wc20070301[4][4] = "h";
wc20070301[4][5] = "a";
wc20070301[4][6] = "Apr 27, 2007";
wc20070301[4][7] = "_top";
wc20070301[4][8] = "|1|7";
wc20070301[4][9] = "";
wc20070301[4][10] = "R";
wc20070301[4][11] = "";
wc20070301[4][12] = "";
wc20070301[4][13] = "";
wc20070301[4][14] = "Read More";

wc20070301[5][0] = 20070425;
wc20070301[5][1] = "Baxter Announces Carbon Neutral Headquarters ";
wc20070301[5][2] = "";
wc20070301[5][3] = "/press_room/press_releases/2007/04-25-07-ceres_parkinson.html";
wc20070301[5][4] = "h";
wc20070301[5][5] = "a";
wc20070301[5][6] = "Apr 25, 2007";
wc20070301[5][7] = "_top";
wc20070301[5][8] = "|1|4";
wc20070301[5][9] = "";
wc20070301[5][10] = "R";
wc20070301[5][11] = "";
wc20070301[5][12] = "";
wc20070301[5][13] = "";
wc20070301[5][14] = "Read More";

wc20070301[6][0] = 20070420;
wc20070301[6][1] = "Baxter Presents Phase I Inhaled Insulin Study Results at Respiratory Drug Delivery Conference ";
wc20070301[6][2] = "";
wc20070301[6][3] = "/press_room/press_releases/2007/04-20-07-promaxx.html";
wc20070301[6][4] = "h";
wc20070301[6][5] = "a";
wc20070301[6][6] = "Apr 20, 2007";
wc20070301[6][7] = "_top";
wc20070301[6][8] = "|1|7";
wc20070301[6][9] = "";
wc20070301[6][10] = "R";
wc20070301[6][11] = "";
wc20070301[6][12] = "Findings Suggest Insulin Powder Produced Using Baxter&rsquo;s PROMAXX Microsphere Technology was Absorbed Systemically with No Reported Cough or Shortness of Breath";
wc20070301[6][13] = "";
wc20070301[6][14] = "Read More";

wc20070301[7][0] = 20070419;
wc20070301[7][1] = "Baxter Reports Strong First Quarter Financial Results and Boosts Full-Year Outlook ";
wc20070301[7][2] = "";
wc20070301[7][3] = "/press_room/press_releases/2007/04-19-07-first_qtr_earnings.html";
wc20070301[7][4] = "h";
wc20070301[7][5] = "a";
wc20070301[7][6] = "Apr 19, 2007";
wc20070301[7][7] = "_top";
wc20070301[7][8] = "|1|3";
wc20070301[7][9] = "";
wc20070301[7][10] = "R";
wc20070301[7][11] = "";
wc20070301[7][12] = "First Quarter Sales Increased 11 Percent; EPS of $0.61 Increased 42 Percent ";
wc20070301[7][13] = "";
wc20070301[7][14] = "Read More";

wc20070301[8][0] = 20070417;
wc20070301[8][1] = "Baxter Continues Its Support of the World Federation of Hemophilia\'s Global Alliance for Progress Program ";
wc20070301[8][2] = "";
wc20070301[8][3] = "/press_room/press_releases/2007/04-17-07-hemophilia_A.html";
wc20070301[8][4] = "h";
wc20070301[8][5] = "a";
wc20070301[8][6] = "Apr 17, 2007";
wc20070301[8][7] = "_top";
wc20070301[8][8] = "|1|2";
wc20070301[8][9] = "";
wc20070301[8][10] = "R";
wc20070301[8][11] = "";
wc20070301[8][12] = "";
wc20070301[8][13] = "";
wc20070301[8][14] = "Read More";

wc20070301[9][0] = 20070330;
wc20070301[9][1] = "Baxter Announces FDA Approval of CEPROTIN for Severe Congenital Protein C Deficiency ";
wc20070301[9][2] = "";
wc20070301[9][3] = "/press_room/press_releases/2007/03-30-07-ceprotin.html";
wc20070301[9][4] = "h";
wc20070301[9][5] = "a";
wc20070301[9][6] = "Mar 30, 2007";
wc20070301[9][7] = "_top";
wc20070301[9][8] = "|1|2";
wc20070301[9][9] = "";
wc20070301[9][10] = "R";
wc20070301[9][11] = "";
wc20070301[9][12] = "Critical Therapeutic for Rare Coagulation Disorder";
wc20070301[9][13] = "";
wc20070301[9][14] = "Read More";

wc20070301[10][0] = 20070329;
wc20070301[10][1] = "Baxter Announces Final Phase I/II Data and Initiation of Phase III Clinical Trial for Candidate Pandemic H5N1 Influenza Vaccine ";
wc20070301[10][2] = "";
wc20070301[10][3] = "/press_room/press_releases/2007/03-29-07-h5n1.html";
wc20070301[10][4] = "h";
wc20070301[10][5] = "a";
wc20070301[10][6] = "Mar 29, 2007";
wc20070301[10][7] = "_top";
wc20070301[10][8] = "|1|2";
wc20070301[10][9] = "";
wc20070301[10][10] = "R";
wc20070301[10][11] = "";
wc20070301[10][12] = "";
wc20070301[10][13] = "";
wc20070301[10][14] = "Read More";

wc20070301[11][0] = 20070327;
wc20070301[11][1] = "Baxter Announces 2007 Renal Discoveries Grant Program to Advance Science and Care for Kidney Disease Patients ";
wc20070301[11][2] = "";
wc20070301[11][3] = "/press_room/press_releases/2007/03-27-07-renal_discoveries.html";
wc20070301[11][4] = "h";
wc20070301[11][5] = "a";
wc20070301[11][6] = "Mar 27, 2007";
wc20070301[11][7] = "_top";
wc20070301[11][8] = "|1|8";
wc20070301[11][9] = "";
wc20070301[11][10] = "R";
wc20070301[11][11] = "";
wc20070301[11][12] = "";
wc20070301[11][13] = "";
wc20070301[11][14] = "Read More";

wc20070301[12][0] = 20070327;
wc20070301[12][1] = "New Baxter Program Surrounds Alpha-1 Patients, Physicians with Support ";
wc20070301[12][2] = "";
wc20070301[12][3] = "/press_room/press_releases/2007/03-27-07-aralast_program.html";
wc20070301[12][4] = "h";
wc20070301[12][5] = "a";
wc20070301[12][6] = "Mar 27, 2007";
wc20070301[12][7] = "_top";
wc20070301[12][8] = "|1|2";
wc20070301[12][9] = "";
wc20070301[12][10] = "R";
wc20070301[12][11] = "";
wc20070301[12][12] = "";
wc20070301[12][13] = "";
wc20070301[12][14] = "Read More";

wc20070301[13][0] = 20070314;
wc20070301[13][1] = "Baxter Holds 2007 Investor Conference in Chicago ";
wc20070301[13][2] = "";
wc20070301[13][3] = "/press_room/press_releases/2007/03-14-07-investor_conference.html";
wc20070301[13][4] = "h";
wc20070301[13][5] = "a";
wc20070301[13][6] = "Mar 14, 2007";
wc20070301[13][7] = "_top";
wc20070301[13][8] = "|1|3";
wc20070301[13][9] = "";
wc20070301[13][10] = "R";
wc20070301[13][11] = "";
wc20070301[13][12] = "";
wc20070301[13][13] = "";
wc20070301[13][14] = "Read More";

wc20070301[14][0] = 20070313;
wc20070301[14][1] = "Baxter\'s Board of Directors Expands Share Repurchase Authorization by $2 Billion ";
wc20070301[14][2] = "";
wc20070301[14][3] = "/press_room/press_releases/2007/03-13-07-repurchase.html";
wc20070301[14][4] = "h";
wc20070301[14][5] = "a";
wc20070301[14][6] = "Mar 13, 2007";
wc20070301[14][7] = "_top";
wc20070301[14][8] = "|1|3";
wc20070301[14][9] = "";
wc20070301[14][10] = "R";
wc20070301[14][11] = "";
wc20070301[14][12] = "";
wc20070301[14][13] = "";
wc20070301[14][14] = "Read More";

wc20070301[15][0] = 20070309;
wc20070301[15][1] = "Baxter Initiates Multi-Center Phase II Clinical Trial to Manage Fluid Overload in Congestive Heart Failure Patients ";
wc20070301[15][2] = "";
wc20070301[15][3] = "/press_room/press_releases/2007/03-09-07-phase_ii_chf.html";
wc20070301[15][4] = "h";
wc20070301[15][5] = "a";
wc20070301[15][6] = "Mar 09, 2007";
wc20070301[15][7] = "_top";
wc20070301[15][8] = "|1|8";
wc20070301[15][9] = "";
wc20070301[15][10] = "R";
wc20070301[15][11] = "";
wc20070301[15][12] = "16 leading sites around the world to participate in a study on the innovative application of peritoneal ultrafiltration in patients with advanced Congestive Heart Failure";
wc20070301[15][13] = "";
wc20070301[15][14] = "Read More";

wc20070301[16][0] = 20070306;
wc20070301[16][1] = "Baxter and its Foundation Contribute More Than $35 Million in 2006 to Address Local and Global Critical Needs ";
wc20070301[16][2] = "";
wc20070301[16][3] = "/press_room/press_releases/2007/03-06-07-foundation_2006.html";
wc20070301[16][4] = "h";
wc20070301[16][5] = "a";
wc20070301[16][6] = "Mar 06, 2007";
wc20070301[16][7] = "_top";
wc20070301[16][8] = "|1|4";
wc20070301[16][9] = "";
wc20070301[16][10] = "R";
wc20070301[16][11] = "";
wc20070301[16][12] = "";
wc20070301[16][13] = "";
wc20070301[16][14] = "Read More";

wc20070301[17][0] = 20070301;
wc20070301[17][1] = "Baxter Completes Sale of Transfusion Therapies Business ";
wc20070301[17][2] = "";
wc20070301[17][3] = "/press_room/press_releases/2007/03-01-07-transfusion_therapies.html";
wc20070301[17][4] = "h";
wc20070301[17][5] = "a";
wc20070301[17][6] = "Mar 01, 2007";
wc20070301[17][7] = "_top";
wc20070301[17][8] = "|1";
wc20070301[17][9] = "";
wc20070301[17][10] = "R";
wc20070301[17][11] = "";
wc20070301[17][12] = "";
wc20070301[17][13] = "";
wc20070301[17][14] = "Read More";

var wc20070501 = MultiDimensionalArray(14,10);
wcnewsarray[idx++] = 20070501;
wc20070501[0][0] = 20070807;
wc20070501[0][1] = "Baxter Provides Update on Service Documentation Class I Recall <span class=documentinfo></span>";
wc20070501[0][2] = "";
wc20070501[0][3] = "/press_room/press_releases/2007/08-07-07-service_documentation_update.html";
wc20070501[0][4] = "h";
wc20070501[0][5] = "a";
wc20070501[0][6] = "Aug 07, 2007";
wc20070501[0][7] = "_top";
wc20070501[0][8] = "|1|7";
wc20070501[0][9] = "1";
wc20070501[0][10] = "R";
wc20070501[0][11] = "";
wc20070501[0][12] = "Models Include: COLLEAGUE Mono Volumetric Infusion pump, Product Codes 2M8151 and 2M8153; COLLEAGUE CX Volumetric Infusion pump, Product Codes 2M8161 and 2M8163; FLO-GARD 6201 Volumetric Infusion pump, Product Code 2M8063; and FLO-GARD 6301 Volumetric Infusion pump, Product Code 2M8064";
wc20070501[0][13] = "";

wc20070501[1][0] = 20070806;
wc20070501[1][1] = "Baxter Announces Collaboration for Development of Next-Generation Home Hemodialysis Machine <span class=documentinfo></span>";
wc20070501[1][2] = "";
wc20070501[1][3] = "/press_room/press_releases/2007/08-06-07-DEKA_collaboration.html";
wc20070501[1][4] = "h";
wc20070501[1][5] = "a";
wc20070501[1][6] = "Aug 06, 2007";
wc20070501[1][7] = "_top";
wc20070501[1][8] = "|1|8";
wc20070501[1][9] = "1";
wc20070501[1][10] = "R";
wc20070501[1][11] = "";
wc20070501[1][12] = "";
wc20070501[1][13] = "";

wc20070501[2][0] = 20070802;
wc20070501[2][1] = "Baxter Releases Eighth Annual Sustainability Report <span class=documentinfo></span>";
wc20070501[2][2] = "";
wc20070501[2][3] = "/press_room/press_releases/2007/08-02-07-sustainability.html";
wc20070501[2][4] = "h";
wc20070501[2][5] = "a";
wc20070501[2][6] = "Aug 02, 2007";
wc20070501[2][7] = "_top";
wc20070501[2][8] = "|1|4";
wc20070501[2][9] = "1";
wc20070501[2][10] = "R";
wc20070501[2][11] = "";
wc20070501[2][12] = "Report Highlights Long-Term Sustainability Priorities and 2006 Social, Economic and Environmental Performance";
wc20070501[2][13] = "";

wc20070501[3][0] = 20070801;
wc20070501[3][1] = "Baxter International Inc. Names Wayne Hockmeyer to Board of Directors <span class=documentinfo></span>";
wc20070501[3][2] = "";
wc20070501[3][3] = "/press_room/press_releases/2007/08-01-07-hockmeyer.html";
wc20070501[3][4] = "h";
wc20070501[3][5] = "a";
wc20070501[3][6] = "Aug 01, 2007";
wc20070501[3][7] = "_top";
wc20070501[3][8] = "|1";
wc20070501[3][9] = "1";
wc20070501[3][10] = "R";
wc20070501[3][11] = "";
wc20070501[3][12] = "";
wc20070501[3][13] = "";

wc20070501[4][0] = 20070731;
wc20070501[4][1] = "Baxter Declares Quarterly Dividend <span class=documentinfo></span>";
wc20070501[4][2] = "";
wc20070501[4][3] = "/press_releases/2007/07-31-07-q2_dividend.html";
wc20070501[4][4] = "h";
wc20070501[4][5] = "a";
wc20070501[4][6] = "Jul 31, 2007";
wc20070501[4][7] = "_top";
wc20070501[4][8] = "|1|3";
wc20070501[4][9] = "1";
wc20070501[4][10] = "R";
wc20070501[4][11] = "";
wc20070501[4][12] = "";
wc20070501[4][13] = "";

wc20070501[5][0] = 20070725;
wc20070501[5][1] = "FDA Classifies Baxter&acute;s Voluntary Recall Action Regarding Service Documentation as a Class I Recall <span class=documentinfo></span>";
wc20070501[5][2] = "";
wc20070501[5][3] = "/press_room/press_releases/2007/07-25-07-service_documentation.html";
wc20070501[5][4] = "h";
wc20070501[5][5] = "a";
wc20070501[5][6] = "Jul 25, 2007";
wc20070501[5][7] = "_top";
wc20070501[5][8] = "|1|7";
wc20070501[5][9] = "1";
wc20070501[5][10] = "R";
wc20070501[5][11] = "";
wc20070501[5][12] = "Models Include: COLLEAGUE Volumetric Infusion pump 2M8151 and 2M8153; COLLEAGUE CX Volumetric Infusion pump 2M8161 and 2M8163;  FLO-GARD Volumetric Infusion pump 2M8063 and 2M8064";
wc20070501[5][13] = "";

wc20070501[6][0] = 20070723;
wc20070501[6][1] = "Baxter Announces Preliminary Phase I/II Data for Seasonal Influenza Vaccine Candidate <span class=documentinfo></span>";
wc20070501[6][2] = "";
wc20070501[6][3] = "/press_room/press_releases/2007/07-23-07-vaccine_seasonal_flu.html";
wc20070501[6][4] = "h";
wc20070501[6][5] = "a";
wc20070501[6][6] = "Jul 23, 2007";
wc20070501[6][7] = "_top";
wc20070501[6][8] = "|1|2";
wc20070501[6][9] = "";
wc20070501[6][10] = "R";
wc20070501[6][11] = "";
wc20070501[6][12] = "Key safety, immunogenicity data presented at Options for the Control of Influenza VI Conference in Toronto";
wc20070501[6][13] = "";

wc20070501[7][0] = 20070719;
wc20070501[7][1] = "Baxter Raises 2007 Earnings Guidance Following Strong Second Quarter Financial Results <span class=documentinfo></span>";
wc20070501[7][2] = "";
wc20070501[7][3] = "/press_room/press_releases/2007/07-19-07-second_qtr_earnings.html";
wc20070501[7][4] = "h";
wc20070501[7][5] = "a";
wc20070501[7][6] = "Jul 19, 2007";
wc20070501[7][7] = "_top";
wc20070501[7][8] = "|1|3";
wc20070501[7][9] = "1";
wc20070501[7][10] = "R";
wc20070501[7][11] = "";
wc20070501[7][12] = "";
wc20070501[7][13] = "";

wc20070501[8][0] = 20070718;
wc20070501[8][1] = "FDA Classifies Baxter&acute;s Field Corrective Action as a Class I Recall on Recently Manufactured or Upgraded COLLEAGUE Triple Channel Infusion Pumps (Models 2M8153, 2M8163 and 2M9163) <span class=documentinfo></span>";
wc20070501[8][2] = "";
wc20070501[8][3] = "/press_room/press_releases/2007/07-18-07-colleague.html";
wc20070501[8][4] = "h";
wc20070501[8][5] = "a";
wc20070501[8][6] = "Jul 18, 2007";
wc20070501[8][7] = "_top";
wc20070501[8][8] = "|1|7";
wc20070501[8][9] = "";
wc20070501[8][10] = "R";
wc20070501[8][11] = "";
wc20070501[8][12] = "Affected Devices Have Been Removed from Use; Company Currently Evaluating Correction";
wc20070501[8][13] = "";

wc20070501[9][0] = 20070620;
wc20070501[9][1] = "Baxter Signs Agreements to Evaluate TISSEEL use with New, Innovative Therapies <span class=documentinfo></span>";
wc20070501[9][2] = "";
wc20070501[9][3] = "/press_room/press_releases/2007/06-20-07-regen_med_tisseel.html";
wc20070501[9][4] = "h";
wc20070501[9][5] = "a";
wc20070501[9][6] = "Jun 20, 2007";
wc20070501[9][7] = "_top";
wc20070501[9][8] = "|1|2";
wc20070501[9][9] = "";
wc20070501[9][10] = "R";
wc20070501[9][11] = "";
wc20070501[9][12] = "Fibrin sealant to be used in combination with investigational treatments for chronic back pain and wound repair";
wc20070501[9][13] = "";

wc20070501[10][0] = 20070613;
wc20070501[10][1] = "Baxter Supports Improved Access to Pandemic Influenza Treatment in the Developing World <span class=documentinfo></span>";
wc20070501[10][2] = "";
wc20070501[10][3] = "/press_room/press_releases/2007/06-13-07-vac_dev_countries.html";
wc20070501[10][4] = "h";
wc20070501[10][5] = "a";
wc20070501[10][6] = "Jun 13, 2007";
wc20070501[10][7] = "_top";
wc20070501[10][8] = "|1|2";
wc20070501[10][9] = "";
wc20070501[10][10] = "R";
wc20070501[10][11] = "";
wc20070501[10][12] = "Company pledges to support World Health Organization program";
wc20070501[10][13] = "";

wc20070501[11][0] = 20070514;
wc20070501[11][1] = "Jeffrey Modell Foundation Opens Diagnostic Center for Primary Immunodeficiencies at the University of California-San Francisco <span class=documentinfo></span>";
wc20070501[11][2] = "";
wc20070501[11][3] = "/press_room/press_releases/2007/05-14-07-UC_san_francisco.html";
wc20070501[11][4] = "h";
wc20070501[11][5] = "a";
wc20070501[11][6] = "May 14, 2007";
wc20070501[11][7] = "_top";
wc20070501[11][8] = "|1|2";
wc20070501[11][9] = "";
wc20070501[11][10] = "R";
wc20070501[11][11] = "";
wc20070501[11][12] = "Grant from Baxter Supports Primary Immunodeficiency Diagnosis and Patient Access to Care";
wc20070501[11][13] = "";

wc20070501[12][0] = 20070511;
wc20070501[12][1] = "Jeffrey Modell Foundation Funds Molecular Diagnostic Laboratory for Primary Immunodeficiencies at Seattle Children\'s Hospital Research Institute <span class=documentinfo></span>";
wc20070501[12][2] = "";
wc20070501[12][3] = "/press_room/press_releases/2007//05-11-07-seattle_childrens_hospital.html";
wc20070501[12][4] = "h";
wc20070501[12][5] = "a";
wc20070501[12][6] = "May 11, 2007";
wc20070501[12][7] = "_top";
wc20070501[12][8] = "|1|2";
wc20070501[12][9] = "";
wc20070501[12][10] = "R";
wc20070501[12][11] = "";
wc20070501[12][12] = "Grant from Baxter Supports Primary Immunodeficiency Diagnosis and Patient Access to Care";
wc20070501[12][13] = "";

wc20070501[13][0] = 20070509;
wc20070501[13][1] = "Baxter Receives Approval to Process ARALAST NP <span class=documentinfo></span>";
wc20070501[13][2] = "";
wc20070501[13][3] = "/press_room/press_releases/2007/05-09-07-aralast.html";
wc20070501[13][4] = "h";
wc20070501[13][5] = "a";
wc20070501[13][6] = "May 09, 2007";
wc20070501[13][7] = "_top";
wc20070501[13][8] = "|1|2";
wc20070501[13][9] = "";
wc20070501[13][10] = "R";
wc20070501[13][11] = "";
wc20070501[13][12] = "";
wc20070501[13][13] = "";

wc20070501[14][0] = 20070501;
wc20070501[14][1] = "Baxter Executives Provide Update on Progress at Annual Shareholder Meeting <span class=documentinfo></span>";
wc20070501[14][2] = "";
wc20070501[14][3] = "/press_room/press_releases/2007/05-01-07-annual_meeting.html";
wc20070501[14][4] = "h";
wc20070501[14][5] = "a";
wc20070501[14][6] = "May 01, 2007";
wc20070501[14][7] = "_top";
wc20070501[14][8] = "|1|3";
wc20070501[14][9] = "1";
wc20070501[14][10] = "R";
wc20070501[14][11] = "";
wc20070501[14][12] = "Baxter&rsquo;s Board of Directors Declares Quarterly Dividend&lt;br&gt;Carlos Alonso Elected as a Corporate Officer";
wc20070501[14][13] = "";

var wc20070601 = MultiDimensionalArray(14,13);
wcnewsarray[idx++] = 20070601;
wc20070601[0][0] = 20070830;
wc20070601[0][1] = "Baxter Provides Update on Service Documentation Class I Recall ";
wc20070601[0][2] = "";
wc20070601[0][3] = "/press_room/press_releases/2007/08-30-07-service_documentation_update.html";
wc20070601[0][4] = "h";
wc20070601[0][5] = "a";
wc20070601[0][6] = "Aug 30, 2007";
wc20070601[0][7] = "_top";
wc20070601[0][8] = "|1|7";
wc20070601[0][9] = "";
wc20070601[0][10] = "R";
wc20070601[0][11] = "";
wc20070601[0][12] = "";
wc20070601[0][13] = "";
wc20070601[0][14] = "Read More";

wc20070601[1][0] = 20070828;
wc20070601[1][1] = "Baxter and the Alzheimer\'s Disease Cooperative Study Group to Pursue a Phase III Study of Gammagard Liquid in Patients with Alzheimer\'s Disease ";
wc20070601[1][2] = "";
wc20070601[1][3] = "/press_room/press_releases/2007/08-28-07-ivig.html";
wc20070601[1][4] = "h";
wc20070601[1][5] = "a";
wc20070601[1][6] = "Aug 28, 2007";
wc20070601[1][7] = "_top";
wc20070601[1][8] = "|1|2";
wc20070601[1][9] = "";
wc20070601[1][10] = "R";
wc20070601[1][11] = "";
wc20070601[1][12] = "";
wc20070601[1][13] = "";
wc20070601[1][14] = "Read More";

wc20070601[2][0] = 20070822;
wc20070601[2][1] = "Baxter to Launch GARDian&lt;SUP&gt;&lt;SMALL&gt;TM&lt;/SMALL&gt;&lt;/SUP&gt;, a Groundbreaking Initiative that Helps Provide Continued Access to GAMMAGARD for Current Patients ";
wc20070601[2][2] = "";
wc20070601[2][3] = "/press_room/press_releases/2007/08-22-07-gammagard.html";
wc20070601[2][4] = "h";
wc20070601[2][5] = "a";
wc20070601[2][6] = "Aug 22, 2007";
wc20070601[2][7] = "_top";
wc20070601[2][8] = "|1|2";
wc20070601[2][9] = "";
wc20070601[2][10] = "R";
wc20070601[2][11] = "";
wc20070601[2][12] = "";
wc20070601[2][13] = "";
wc20070601[2][14] = "Read More";

wc20070601[3][0] = 20070816;
wc20070601[3][1] = "Baxter Awarded Pandemic Advanced Supply Contract from the Department of Health ";
wc20070601[3][2] = "";
wc20070601[3][3] = "/press_room/press_releases/2007/08-16-07-pandemic_uk.html";
wc20070601[3][4] = "h";
wc20070601[3][5] = "a";
wc20070601[3][6] = "Aug 16, 2007";
wc20070601[3][7] = "_top";
wc20070601[3][8] = "|1|2";
wc20070601[3][9] = "";
wc20070601[3][10] = "R";
wc20070601[3][11] = "";
wc20070601[3][12] = "";
wc20070601[3][13] = "";
wc20070601[3][14] = "Read More";

wc20070601[4][0] = 20070808;
wc20070601[4][1] = "Baiyunshan Pharmaceutical and Baxter Finalize Joint Venture for Parenteral Nutrition Products in China ";
wc20070601[4][2] = "";
wc20070601[4][3] = "/press_room/press_releases/2007/08-08-07-baiyunshan_pharmaceutical.html";
wc20070601[4][4] = "h";
wc20070601[4][5] = "a";
wc20070601[4][6] = "Aug 08, 2007";
wc20070601[4][7] = "_top";
wc20070601[4][8] = "|1|5|7";
wc20070601[4][9] = "";
wc20070601[4][10] = "R";
wc20070601[4][11] = "";
wc20070601[4][12] = "";
wc20070601[4][13] = "";
wc20070601[4][14] = "Read More";

wc20070601[5][0] = 20070807;
wc20070601[5][1] = "Baxter Provides Update on Service Documentation Class I Recall ";
wc20070601[5][2] = "";
wc20070601[5][3] = "/press_room/press_releases/2007/08-07-07-service_documentation_update.html";
wc20070601[5][4] = "h";
wc20070601[5][5] = "a";
wc20070601[5][6] = "Aug 07, 2007";
wc20070601[5][7] = "_top";
wc20070601[5][8] = "|1|7";
wc20070601[5][9] = "1";
wc20070601[5][10] = "R";
wc20070601[5][11] = "";
wc20070601[5][12] = "";
wc20070601[5][13] = "";
wc20070601[5][14] = "Read More";

wc20070601[6][0] = 20070806;
wc20070601[6][1] = "Baxter Announces Collaboration for Development of Next-Generation Home Hemodialysis Machine ";
wc20070601[6][2] = "";
wc20070601[6][3] = "/press_room/press_releases/2007/08-06-07-DEKA_collaboration.html";
wc20070601[6][4] = "h";
wc20070601[6][5] = "a";
wc20070601[6][6] = "Aug 06, 2007";
wc20070601[6][7] = "_top";
wc20070601[6][8] = "|1|8";
wc20070601[6][9] = "1";
wc20070601[6][10] = "R";
wc20070601[6][11] = "";
wc20070601[6][12] = "";
wc20070601[6][13] = "";
wc20070601[6][14] = "Read More";

wc20070601[7][0] = 20070801;
wc20070601[7][1] = "Baxter International Inc. Names Wayne Hockmeyer to Board of Directors ";
wc20070601[7][2] = "";
wc20070601[7][3] = "/press_room/press_releases/2007/08-01-07-hockmeyer.html";
wc20070601[7][4] = "h";
wc20070601[7][5] = "a";
wc20070601[7][6] = "Aug 01, 2007";
wc20070601[7][7] = "_top";
wc20070601[7][8] = "|1";
wc20070601[7][9] = "1";
wc20070601[7][10] = "R";
wc20070601[7][11] = "";
wc20070601[7][12] = "";
wc20070601[7][13] = "";
wc20070601[7][14] = "Read More";

wc20070601[8][0] = 20070731;
wc20070601[8][1] = "Baxter Declares Quarterly Dividend ";
wc20070601[8][2] = "";
wc20070601[8][3] = "/press_releases/2007/07-31-07-q2_dividend.html";
wc20070601[8][4] = "h";
wc20070601[8][5] = "a";
wc20070601[8][6] = "Jul 31, 2007";
wc20070601[8][7] = "_top";
wc20070601[8][8] = "|1|3";
wc20070601[8][9] = "1";
wc20070601[8][10] = "R";
wc20070601[8][11] = "";
wc20070601[8][12] = "";
wc20070601[8][13] = "";
wc20070601[8][14] = "Read More";

wc20070601[9][0] = 20070725;
wc20070601[9][1] = "FDA Classifies Baxter\'s Voluntary Recall Action Regarding Service Documentation as a Class I Recall ";
wc20070601[9][2] = "";
wc20070601[9][3] = "/press_room/press_releases/2007/07-25-07-service_documentation.html";
wc20070601[9][4] = "h";
wc20070601[9][5] = "a";
wc20070601[9][6] = "Jul 25, 2007";
wc20070601[9][7] = "_top";
wc20070601[9][8] = "|1|7";
wc20070601[9][9] = "1";
wc20070601[9][10] = "R";
wc20070601[9][11] = "";
wc20070601[9][12] = "";
wc20070601[9][13] = "";
wc20070601[9][14] = "Read More";

wc20070601[10][0] = 20070723;
wc20070601[10][1] = "Baxter Announces Preliminary Phase I/II Data for Seasonal Influenza Vaccine Candidate ";
wc20070601[10][2] = "";
wc20070601[10][3] = "/press_room/press_releases/2007/07-23-07-vaccine_seasonal_flu.html";
wc20070601[10][4] = "h";
wc20070601[10][5] = "a";
wc20070601[10][6] = "Jul 23, 2007";
wc20070601[10][7] = "_top";
wc20070601[10][8] = "|1|2";
wc20070601[10][9] = "";
wc20070601[10][10] = "R";
wc20070601[10][11] = "";
wc20070601[10][12] = "";
wc20070601[10][13] = "";
wc20070601[10][14] = "Read More";

wc20070601[11][0] = 20070719;
wc20070601[11][1] = "Baxter Raises 2007 Earnings Guidance Following Strong Second Quarter Financial Results ";
wc20070601[11][2] = "";
wc20070601[11][3] = "/press_room/press_releases/2007/07-19-07-second_qtr_earnings.html";
wc20070601[11][4] = "h";
wc20070601[11][5] = "a";
wc20070601[11][6] = "Jul 19, 2007";
wc20070601[11][7] = "_top";
wc20070601[11][8] = "|1|3";
wc20070601[11][9] = "1";
wc20070601[11][10] = "R";
wc20070601[11][11] = "";
wc20070601[11][12] = "";
wc20070601[11][13] = "";
wc20070601[11][14] = "Read More";

wc20070601[12][0] = 20070718;
wc20070601[12][1] = "FDA Classifies Baxter\'s Field Corrective Action as a Class I Recall on Recently Manufactured or Upgraded COLLEAGUE Triple Channel Infusion Pumps (Models 2M8153, 2M8163 and 2M9163) ";
wc20070601[12][2] = "";
wc20070601[12][3] = "/press_room/press_releases/2007/07-18-07-colleague.html";
wc20070601[12][4] = "h";
wc20070601[12][5] = "a";
wc20070601[12][6] = "Jul 18, 2007";
wc20070601[12][7] = "_top";
wc20070601[12][8] = "|1|7";
wc20070601[12][9] = "";
wc20070601[12][10] = "R";
wc20070601[12][11] = "";
wc20070601[12][12] = "";
wc20070601[12][13] = "";
wc20070601[12][14] = "Read More";

wc20070601[13][0] = 20070620;
wc20070601[13][1] = "Baxter Signs Agreements to Evaluate TISSEEL use with New, Innovative Therapies ";
wc20070601[13][2] = "";
wc20070601[13][3] = "/press_room/press_releases/2007/06-20-07-regen_med_tisseel.html";
wc20070601[13][4] = "h";
wc20070601[13][5] = "a";
wc20070601[13][6] = "Jun 20, 2007";
wc20070601[13][7] = "_top";
wc20070601[13][8] = "|1|7";
wc20070601[13][9] = "1";
wc20070601[13][10] = "R";
wc20070601[13][11] = "";
wc20070601[13][12] = "";
wc20070601[13][13] = "";
wc20070601[13][14] = "Read More";

wc20070601[14][0] = 20070613;
wc20070601[14][1] = "Baxter Supports Improved Access to Pandemic Influenza Treatment in the Developing World ";
wc20070601[14][2] = "";
wc20070601[14][3] = "/press_room/press_releases/2007/06-13-07-vac_dev_countries.html";
wc20070601[14][4] = "h";
wc20070601[14][5] = "a";
wc20070601[14][6] = "Jun 13, 2007";
wc20070601[14][7] = "_top";
wc20070601[14][8] = "|1|2";
wc20070601[14][9] = "";
wc20070601[14][10] = "R";
wc20070601[14][11] = "";
wc20070601[14][12] = "";
wc20070601[14][13] = "";
wc20070601[14][14] = "Read More";

var wc20070901 = MultiDimensionalArray(13,13);
wcnewsarray[idx++] = 20070901;
wc20070901[0][0] = 20071217;
wc20070901[0][1] = "Baxter Announces FDA Approval of GELFOAM&reg; Plus Hemostasis Kit ";
wc20070901[0][2] = "";
wc20070901[0][3] = "/press_room/press_releases/2007/12-17-07-gelfoam.html";
wc20070901[0][4] = "h";
wc20070901[0][5] = "a";
wc20070901[0][6] = "Dec 17, 2007";
wc20070901[0][7] = "_top";
wc20070901[0][8] = "|1|2";
wc20070901[0][9] = "1";
wc20070901[0][10] = "R";
wc20070901[0][11] = "";
wc20070901[0][12] = "The first hemostasis kit combines two important surgical tools: Baxter&rsquo;s human thrombin and Pfizer&rsquo;s GELFOAM";
wc20070901[0][13] = "";
wc20070901[0][14] = "Read More";

wc20070901[1][0] = 20071203;
wc20070901[1][1] = "Baxter Introduces New Drug Safety Packaging for High Alert Medications ";
wc20070901[1][2] = "";
wc20070901[1][3] = "/press_room/press_releases/2007/12-03-07-drug_safety.html";
wc20070901[1][4] = "h";
wc20070901[1][5] = "a";
wc20070901[1][6] = "Dec 03, 2007";
wc20070901[1][7] = "_top";
wc20070901[1][8] = "|1|7";
wc20070901[1][9] = "1";
wc20070901[1][10] = "R";
wc20070901[1][11] = "";
wc20070901[1][12] = "Enhanced Labels the First of Several Initiatives Aimed at Medication Error Reduction";
wc20070901[1][13] = "";
wc20070901[1][14] = "Read More";

wc20070901[2][0] = 20071127;
wc20070901[2][1] = "U.S. Department of Health and Human Services Completes Funding of 2006 Contract Award to CSC\'s DVC and Baxter ";
wc20070901[2][2] = "";
wc20070901[2][3] = "/press_room/press_releases/2007/11-27-07-dynport_vaccine.html";
wc20070901[2][4] = "h";
wc20070901[2][5] = "a";
wc20070901[2][6] = "Nov 27, 2007";
wc20070901[2][7] = "_top";
wc20070901[2][8] = "|1|2";
wc20070901[2][9] = "1";
wc20070901[2][10] = "R";
wc20070901[2][11] = "";
wc20070901[2][12] = "";
wc20070901[2][13] = "";
wc20070901[2][14] = "Read More";

wc20070901[3][0] = 20071113;
wc20070901[3][1] = "Baxter Declares Quarterly Dividend, Increases Rate 30 Percent ";
wc20070901[3][2] = "";
wc20070901[3][3] = "/press_room/press_releases/2007/11-13-07-q4_dividend.html";
wc20070901[3][4] = "h";
wc20070901[3][5] = "a";
wc20070901[3][6] = "Nov 13, 2007";
wc20070901[3][7] = "_top";
wc20070901[3][8] = "|1|3";
wc20070901[3][9] = "1";
wc20070901[3][10] = "R";
wc20070901[3][11] = "";
wc20070901[3][12] = "";
wc20070901[3][13] = "";
wc20070901[3][14] = "Read More";

wc20070901[4][0] = 20071109;
wc20070901[4][1] = "Baxter Receives 510(k) Clearance from FDA for V-Link with VitalShield, New Antimicrobial Intravascular Technology ";
wc20070901[4][2] = "";
wc20070901[4][3] = "/press_room/press_releases/2007/11-09-07-v-link.html";
wc20070901[4][4] = "h";
wc20070901[4][5] = "a";
wc20070901[4][6] = "Nov 09, 2007";
wc20070901[4][7] = "_top";
wc20070901[4][8] = "|1|7";
wc20070901[4][9] = "1";
wc20070901[4][10] = "R";
wc20070901[4][11] = "";
wc20070901[4][12] = "Technology shown to kill 99.9% of specific common pathogens known to cause catheter-related blood stream infections, including MRSA";
wc20070901[4][13] = "";
wc20070901[4][14] = "Read More";

wc20070901[5][0] = 20071106;
wc20070901[5][1] = "Honor Society of Nursing Recognizes Researcher of HIV Risk Prevention for Poor and Underserved ";
wc20070901[5][2] = "";
wc20070901[5][3] = "/press_room/press_releases/2007/11-06-07-episteme_award.html";
wc20070901[5][4] = "h";
wc20070901[5][5] = "a";
wc20070901[5][6] = "Nov 06, 2007";
wc20070901[5][7] = "_top";
wc20070901[5][8] = "|1|4";
wc20070901[5][9] = "1";
wc20070901[5][10] = "R";
wc20070901[5][11] = "";
wc20070901[5][12] = "";
wc20070901[5][13] = "";
wc20070901[5][14] = "Read More";

wc20070901[6][0] = 20071105;
wc20070901[6][1] = "Baxter Kidney Patient Education Program Celebrates Tenth Anniversary ";
wc20070901[6][2] = "";
wc20070901[6][3] = "/press_room/press_releases/2007/11-05-07-kidney_patient_education.html";
wc20070901[6][4] = "h";
wc20070901[6][5] = "a";
wc20070901[6][6] = "Nov 05, 2007";
wc20070901[6][7] = "_top";
wc20070901[6][8] = "|1|8";
wc20070901[6][9] = "";
wc20070901[6][10] = "R";
wc20070901[6][11] = "";
wc20070901[6][12] = "Hands-on program has educated nearly 80,000 patients in over 30 states on chronic kidney disease and treatment options since 1997";
wc20070901[6][13] = "";
wc20070901[6][14] = "Read More";

wc20070901[7][0] = 20071102;
wc20070901[7][1] = "Baxter Announces 2007 Renal Discoveries Grant Winners ";
wc20070901[7][2] = "";
wc20070901[7][3] = "/press_room/press_releases/2007/11-02-07-2007_renal_grant_winners.html";
wc20070901[7][4] = "h";
wc20070901[7][5] = "a";
wc20070901[7][6] = "Nov 02, 2007";
wc20070901[7][7] = "_top";
wc20070901[7][8] = "|1|8";
wc20070901[7][9] = "1";
wc20070901[7][10] = "R";
wc20070901[7][11] = "";
wc20070901[7][12] = "Grants support innovation, exploration and application research projects around the world to advance the knowledge of kidney disease and treatment";
wc20070901[7][13] = "";
wc20070901[7][14] = "Read More";

wc20070901[8][0] = 20071101;
wc20070901[8][1] = "New Study Finds ADEPT&reg; Effective in Reducing Adhesions Following Gynecological Laparoscopic Surgery ";
wc20070901[8][2] = "";
wc20070901[8][3] = "/press_room/press_releases/2007/11-01-07-adept.html";
wc20070901[8][4] = "h";
wc20070901[8][5] = "a";
wc20070901[8][6] = "Nov 01, 2007";
wc20070901[8][7] = "_top";
wc20070901[8][8] = "|1|2";
wc20070901[8][9] = "";
wc20070901[8][10] = "R";
wc20070901[8][11] = "";
wc20070901[8][12] = "Anti-adhesion agent may reduce infertility due to adhesions after surgery";
wc20070901[8][13] = "";
wc20070901[8][14] = "Read More";

wc20070901[9][0] = 20071018;
wc20070901[9][1] = "Baxter Reports Strong Third Quarter Sales and Earnings ";
wc20070901[9][2] = "";
wc20070901[9][3] = "/press_room/press_releases/2007/10-18-07-third_qtr_earnings.html";
wc20070901[9][4] = "h";
wc20070901[9][5] = "a";
wc20070901[9][6] = "Oct 18, 2007";
wc20070901[9][7] = "_top";
wc20070901[9][8] = "|1|3";
wc20070901[9][9] = "";
wc20070901[9][10] = "R";
wc20070901[9][11] = "";
wc20070901[9][12] = "Company Raises Full-Year Outlook for Third Consecutive Quarter";
wc20070901[9][13] = "";
wc20070901[9][14] = "Read More";

wc20070901[10][0] = 20071016;
wc20070901[10][1] = "Baxter Adds Recombinant Protein to Specialty Therapeutics Portfolio ";
wc20070901[10][2] = "";
wc20070901[10][3] = "/press_room/press_releases/2007/10-16-07-kaketsuken.html";
wc20070901[10][4] = "h";
wc20070901[10][5] = "a";
wc20070901[10][6] = "Oct 16, 2007";
wc20070901[10][7] = "_top";
wc20070901[10][8] = "|1|2";
wc20070901[10][9] = "";
wc20070901[10][10] = "R";
wc20070901[10][11] = "";
wc20070901[10][12] = "Agreement with Kaketsuken targets rare blood disorders";
wc20070901[10][13] = "";
wc20070901[10][14] = "Read More";

wc20070901[11][0] = 20071009;
wc20070901[11][1] = "Baxter and Novation Sign Multi-Year Contract Extension Valued at Over $200 Million for Medication Delivery Products ";
wc20070901[11][2] = "";
wc20070901[11][3] = "/press_room/press_releases/2007/10-09-07-novation.html";
wc20070901[11][4] = "h";
wc20070901[11][5] = "a";
wc20070901[11][6] = "Oct 09, 2007";
wc20070901[11][7] = "_top";
wc20070901[11][8] = "|1|7";
wc20070901[11][9] = "";
wc20070901[11][10] = "R";
wc20070901[11][11] = "";
wc20070901[11][12] = "Extension Provides Members of University HealthSystem Consortium With Broad Portfolio of IV Products";
wc20070901[11][13] = "";
wc20070901[11][14] = "Read More";

wc20070901[12][0] = 20070912;
wc20070901[12][1] = "Baxter Named to Dow Jones Sustainability Index for Ninth Consecutive Year ";
wc20070901[12][2] = "";
wc20070901[12][3] = "/press_room/press_releases/2007/09-12-07-sustainability_dow_jones.html";
wc20070901[12][4] = "h";
wc20070901[12][5] = "a";
wc20070901[12][6] = "Sep 12, 2007";
wc20070901[12][7] = "_top";
wc20070901[12][8] = "|1|4";
wc20070901[12][9] = "";
wc20070901[12][10] = "R";
wc20070901[12][11] = "";
wc20070901[12][12] = "Company Named 2007 Medical Products Industry Leader";
wc20070901[12][13] = "";
wc20070901[12][14] = "Read More";

wc20070901[13][0] = 20070910;
wc20070901[13][1] = "Baxter and Halozyme Announce Collaboration For Development Of Subcutaneous GAMMAGARD LIQUID&trade; Administration using Enhanze&trade; Technology ";
wc20070901[13][2] = "";
wc20070901[13][3] = "/press_room/press_releases/2007/09-10-07-baxter_halozyme.html";
wc20070901[13][4] = "h";
wc20070901[13][5] = "a";
wc20070901[13][6] = "Sep 10, 2007";
wc20070901[13][7] = "_top";
wc20070901[13][8] = "|1|2";
wc20070901[13][9] = "";
wc20070901[13][10] = "R";
wc20070901[13][11] = "";
wc20070901[13][12] = "Development of New Route to Administer GAMMAGARD LIQUID&trade; 10% Could Make Home Therapy More Accessible; Collaboration Valued at Up To $47 Million";
wc20070901[13][13] = "";
wc20070901[13][14] = "Read More";

var wc20080101 = MultiDimensionalArray(14,13);
wcnewsarray[idx++] = 20080101;
wc20080101[0][0] = 20080320;
wc20080101[0][1] = "Baxter Announces FDA Approval of ARTISS Slow-Setting Fibrin Sealant in Treatment of Burn Patients ";
wc20080101[0][2] = "";
wc20080101[0][3] = "/press_room/press_releases/2008/03-20-08-artiss.html";
wc20080101[0][4] = "h";
wc20080101[0][5] = "a";
wc20080101[0][6] = "Mar 20, 2008";
wc20080101[0][7] = "_top";
wc20080101[0][8] = "|1|2";
wc20080101[0][9] = "1";
wc20080101[0][10] = "R";
wc20080101[0][11] = "";
wc20080101[0][12] = "Biologically active tissue adhesive allows for placement of skin grafts without staples or sutures";
wc20080101[0][13] = "";
wc20080101[0][14] = "Read More";

wc20080101[1][0] = 20080317;
wc20080101[1][1] = "Baxter\'s Board of Directors Approves New Share Repurchase Authorization of $2 Billion ";
wc20080101[1][2] = "";
wc20080101[1][3] = "/press_room/press_releases/2008/03-17-08-stock_repurchase.html";
wc20080101[1][4] = "h";
wc20080101[1][5] = "a";
wc20080101[1][6] = "Mar 17, 2008";
wc20080101[1][7] = "_top";
wc20080101[1][8] = "|1|3";
wc20080101[1][9] = "1";
wc20080101[1][10] = "R";
wc20080101[1][11] = "";
wc20080101[1][12] = "";
wc20080101[1][13] = "";
wc20080101[1][14] = "Read More";

wc20080101[2][0] = 20080316;
wc20080101[2][1] = "Baxter Presents Latest Clinical Trial Results of GAMMAGARD LIQUID Administered Subcutaneously ";
wc20080101[2][2] = "";
wc20080101[2][3] = "/press_room/press_releases/2008/03-16-08-gammagard_liquid.html";
wc20080101[2][4] = "h";
wc20080101[2][5] = "a";
wc20080101[2][6] = "Mar 16, 2008";
wc20080101[2][7] = "_top";
wc20080101[2][8] = "|1|2";
wc20080101[2][9] = "1";
wc20080101[2][10] = "R";
wc20080101[2][11] = "";
wc20080101[2][12] = "Phase I/II data showed that Enhanze Technology&trade; enabled subcutaneous administration of a monthly dose of GAMMAGARD LIQUID in patients with Primary Immunodeficiency";
wc20080101[2][13] = "";
wc20080101[2][14] = "Read More";

wc20080101[3][0] = 20080315;
wc20080101[3][1] = "Undiagnosed Primary Immunodeficiency Disorders are Associated with Substantial Healthcare Cost and Resource Use ";
wc20080101[3][2] = "";
wc20080101[3][3] = "/press_room/press_releases/2008/03-15-08-burden_of_illness.html";
wc20080101[3][4] = "h";
wc20080101[3][5] = "a";
wc20080101[3][6] = "Mar 15, 2008";
wc20080101[3][7] = "_top";
wc20080101[3][8] = "|1|2";
wc20080101[3][9] = "1";
wc20080101[3][10] = "R";
wc20080101[3][11] = "";
wc20080101[3][12] = "Baxter study reveals care of patients with undiagnosed Primary Immunodeficiency Disorders cost more than $40,000 per year";
wc20080101[3][13] = "";
wc20080101[3][14] = "Read More";

wc20080101[4][0] = 20080310;
wc20080101[4][1] = "Baxter and its Foundation Contribute Nearly $53 Million in 2007 to Address Critical Needs Locally and Globally ";
wc20080101[4][2] = "";
wc20080101[4][3] = "/press_releases/2008/03-10-08-foundation_2007.html";
wc20080101[4][4] = "h";
wc20080101[4][5] = "a";
wc20080101[4][6] = "Mar 10, 2008";
wc20080101[4][7] = "_top";
wc20080101[4][8] = "|1|4";
wc20080101[4][9] = "1";
wc20080101[4][10] = "R";
wc20080101[4][11] = "";
wc20080101[4][12] = "";
wc20080101[4][13] = "";
wc20080101[4][14] = "Read More";

wc20080101[5][0] = 20080228;
wc20080101[5][1] = "Baxter to Proceed with Recall of Remaining Heparin Sodium Vial Products Services Research ";
wc20080101[5][2] = "";
wc20080101[5][3] = "/press_room/press_releases/2008/02-28-08-heparin.html";
wc20080101[5][4] = "h";
wc20080101[5][5] = "a";
wc20080101[5][6] = "Feb 28, 2008";
wc20080101[5][7] = "_top";
wc20080101[5][8] = "|1|7";
wc20080101[5][9] = "1";
wc20080101[5][10] = "R";
wc20080101[5][11] = "";
wc20080101[5][12] = "";
wc20080101[5][13] = "";
wc20080101[5][14] = "Read More";

wc20080101[6][0] = 20080221;
wc20080101[6][1] = "Baxter Highlights Recent Sustainability Achievements and Recognition ";
wc20080101[6][2] = "";
wc20080101[6][3] = "/press_room/press_releases/2008/02-21-08-sustainability.html";
wc20080101[6][4] = "h";
wc20080101[6][5] = "a";
wc20080101[6][6] = "Feb 21, 2008";
wc20080101[6][7] = "_top";
wc20080101[6][8] = "|1|4";
wc20080101[6][9] = "";
wc20080101[6][10] = "R";
wc20080101[6][11] = "";
wc20080101[6][12] = "";
wc20080101[6][13] = "";
wc20080101[6][14] = "Read More";

wc20080101[7][0] = 20080212;
wc20080101[7][1] = "Baxter Declares Quarterly Dividend ";
wc20080101[7][2] = "";
wc20080101[7][3] = "/press_room/press_releases/2008/02-12-08-dividend.html";
wc20080101[7][4] = "h";
wc20080101[7][5] = "a";
wc20080101[7][6] = "Feb 12, 2008";
wc20080101[7][7] = "_top";
wc20080101[7][8] = "|1|3";
wc20080101[7][9] = "1";
wc20080101[7][10] = "R";
wc20080101[7][11] = "";
wc20080101[7][12] = "";
wc20080101[7][13] = "";
wc20080101[7][14] = "Read More";

wc20080101[8][0] = 20080211;
wc20080101[8][1] = "Baxter Provides Update on Heparin Reactions ";
wc20080101[8][2] = "";
wc20080101[8][3] = "/press_room/press_releases/2008/02-11-08-heprin_update.html";
wc20080101[8][4] = "h";
wc20080101[8][5] = "a";
wc20080101[8][6] = "Feb 11, 2008";
wc20080101[8][7] = "_top";
wc20080101[8][8] = "|1|7";
wc20080101[8][9] = "";
wc20080101[8][10] = "R";
wc20080101[8][11] = "";
wc20080101[8][12] = "Company Provides Additional Instructions to Clinicians to Mitigate Risk of Reaction While Working to Identify Root Cause";
wc20080101[8][13] = "";
wc20080101[8][14] = "Read More";

wc20080101[9][0] = 20080204;
wc20080101[9][1] = "Baxter\'s Costa Rica Facility Recognized with Shingo Prize for Excellence in Manufacturing ";
wc20080101[9][2] = "";
wc20080101[9][3] = "/press_room/press_releases/2008/02-04-08-shingo.html";
wc20080101[9][4] = "h";
wc20080101[9][5] = "a";
wc20080101[9][6] = "Feb 04, 2008";
wc20080101[9][7] = "_top";
wc20080101[9][8] = "|1|3";
wc20080101[9][9] = "";
wc20080101[9][10] = "R";
wc20080101[9][11] = "";
wc20080101[9][12] = "Company Continues to Advance Product Baxter&rsquo;s Cartago Plant First to be Awarded Shingo Prize Outside of North America";
wc20080101[9][13] = "";
wc20080101[9][14] = "Read More";

wc20080101[10][0] = 20080125;
wc20080101[10][1] = "Baxter Issues Urgent Nationwide Voluntary Recall of Heparin 1,000 Units/ML 10 and 30mL Multi-Dose Vials ";
wc20080101[10][2] = "";
wc20080101[10][3] = "/press_room/press_releases/2008/01-25-08-heparin_multi.html";
wc20080101[10][4] = "h";
wc20080101[10][5] = "a";
wc20080101[10][6] = "Jan 25, 2008";
wc20080101[10][7] = "_top";
wc20080101[10][8] = "|1|7";
wc20080101[10][9] = "";
wc20080101[10][10] = "R";
wc20080101[10][11] = "";
wc20080101[10][12] = "NDC NUMBERS 0641-2440-45, 0641-2440-41, 0641-2450-45 and 0641-2450-41; LOTS: 107054, 117085, 047056, 097081, 107024, 107064, 107066, 107074, 107111";
wc20080101[10][13] = "";
wc20080101[10][14] = "Read More";

wc20080101[11][0] = 20080124;
wc20080101[11][1] = "Baxter Achieves Record Sales and Earnings for Full-Year 2007 ";
wc20080101[11][2] = "";
wc20080101[11][3] = "/press_room/press_releases/2008/01-24-08-yearendearnings.html";
wc20080101[11][4] = "h";
wc20080101[11][5] = "a";
wc20080101[11][6] = "Jan 24, 2008";
wc20080101[11][7] = "_top";
wc20080101[11][8] = "|1|3";
wc20080101[11][9] = "";
wc20080101[11][10] = "R";
wc20080101[11][11] = "";
wc20080101[11][12] = "Company Exceeds Guidance with Strong Fourth Quarter Results and Provides Double-Digit Earnings Growth Outlook for 2008";
wc20080101[11][13] = "";
wc20080101[11][14] = "Read More";

wc20080101[12][0] = 20080110;
wc20080101[12][1] = "Harborview Medical Center in Seattle Receives Prestigious $100,000 Foster G. McGaw Prize for Excellence in Community Service ";
wc20080101[12][2] = "";
wc20080101[12][3] = "/press_room/press_releases/2008/01-10-08-mcgaw_prize.html";
wc20080101[12][4] = "h";
wc20080101[12][5] = "a";
wc20080101[12][6] = "Jan 10, 2008";
wc20080101[12][7] = "_top";
wc20080101[12][8] = "|1|4";
wc20080101[12][9] = "";
wc20080101[12][10] = "R";
wc20080101[12][11] = "";
wc20080101[12][12] = "Finalists from Ashland, Ky., Lexington, Ky., and Newport News, Va. Also Recognized";
wc20080101[12][13] = "";
wc20080101[12][14] = "Read More";

wc20080101[13][0] = 20080107;
wc20080101[13][1] = "Baxter to Market Nycomed\'s TachoSil&reg; in the United States ";
wc20080101[13][2] = "";
wc20080101[13][3] = "/press_room/press_releases/2008/01-07-08-nycomed.html";
wc20080101[13][4] = "h";
wc20080101[13][5] = "a";
wc20080101[13][6] = "Jan 07, 2008";
wc20080101[13][7] = "_top";
wc20080101[13][8] = "|1|2";
wc20080101[13][9] = "";
wc20080101[13][10] = "R";
wc20080101[13][11] = "";
wc20080101[13][12] = "";
wc20080101[13][13] = "";
wc20080101[13][14] = "Read More";

wc20080101[14][0] = 20080107;
wc20080101[14][1] = "Baxter Announces Recombinant Factor IX Development Program for Hemophilia B ";
wc20080101[14][2] = "";
wc20080101[14][3] = "/press_room/press_releases/2008/01-07-08-factor_ix.html";
wc20080101[14][4] = "h";
wc20080101[14][5] = "a";
wc20080101[14][6] = "Jan 07, 2008";
wc20080101[14][7] = "_top";
wc20080101[14][8] = "|1|2";
wc20080101[14][9] = "";
wc20080101[14][10] = "R";
wc20080101[14][11] = "";
wc20080101[14][12] = "";
wc20080101[14][13] = "";
wc20080101[14][14] = "Read More";

var wc20080401 = MultiDimensionalArray(11,13);
wcnewsarray[idx++] = 20080401;
wc20080401[0][0] = 20080619;
wc20080401[0][1] = "Baxter Releases Ninth Annual Sustainability Report ";
wc20080401[0][2] = "";
wc20080401[0][3] = "/press_room/press_releases/2008/06-19-08_sustainability.html";
wc20080401[0][4] = "h";
wc20080401[0][5] = "a";
wc20080401[0][6] = "Jun 19, 2008";
wc20080401[0][7] = "_top";
wc20080401[0][8] = "|1|4";
wc20080401[0][9] = "1";
wc20080401[0][10] = "R";
wc20080401[0][11] = "";
wc20080401[0][12] = "Announces Companywide Sustainability Goals to Drive Long-Term Progress";
wc20080401[0][13] = "";
wc20080401[0][14] = "Read More";

wc20080401[1][0] = 20080612;
wc20080401[1][1] = "The New England Journal of Medicine Publishes Study Investigating the Safety and Efficacy of Baxter\'s Cell-Based Pandemic, Avian Flu Vaccine ";
wc20080401[1][2] = "";
wc20080401[1][3] = "/press_room/press_releases/2008/06-12-08_vero_cell.html";
wc20080401[1][4] = "h";
wc20080401[1][5] = "a";
wc20080401[1][6] = "Jun 12, 2008";
wc20080401[1][7] = "_top";
wc20080401[1][8] = "|1|2";
wc20080401[1][9] = "1";
wc20080401[1][10] = "R";
wc20080401[1][11] = "";
wc20080401[1][12] = "First scientific, peer-reviewed publication showing the candidate vaccine induced neutralizing antibodies against widely divergent H5N1 virus";
wc20080401[1][13] = "";
wc20080401[1][14] = "Read More";

wc20080401[2][0] = 20080606;
wc20080401[2][1] = "Baxter Preclinical Data of Longer-Acting Factor VIII for Hemophilia A Presented at International Congress ";
wc20080401[2][2] = "";
wc20080401[2][3] = "/press_room/press_releases/2008/06-06-08_preclinical_data_presented.html";
wc20080401[2][4] = "h";
wc20080401[2][5] = "a";
wc20080401[2][6] = "Jun 06, 2008";
wc20080401[2][7] = "_top";
wc20080401[2][8] = "|1|2";
wc20080401[2][9] = "1";
wc20080401[2][10] = "R";
wc20080401[2][11] = "";
wc20080401[2][12] = "Preclinical data on new partially humanized hemophilia A mouse model and characterization of investigational recombinant therapy for von Willebrand disease also shared";
wc20080401[2][13] = "";
wc20080401[2][14] = "Read More";

wc20080401[3][0] = 20080605;
wc20080401[3][1] = "Baxter Announces Winners of &quot;Picture Your Tomorrow, Today&quot; Global Photo Contest ";
wc20080401[3][2] = "";
wc20080401[3][3] = "/press_room/press_releases/2008/06-05-08_tommorrow_today.html";
wc20080401[3][4] = "h";
wc20080401[3][5] = "a";
wc20080401[3][6] = "Jun 05, 2008";
wc20080401[3][7] = "_top";
wc20080401[3][8] = "|1|2";
wc20080401[3][9] = "1";
wc20080401[3][10] = "R";
wc20080401[3][11] = "";
wc20080401[3][12] = "Grand Prizes Awarded to U.K. and Canadian Residents";
wc20080401[3][13] = "";
wc20080401[3][14] = "Read More";

wc20080401[4][0] = 20080605;
wc20080401[4][1] = "Baxter Highlights Recent Sustainability Achievements and Recognition ";
wc20080401[4][2] = "";
wc20080401[4][3] = "/press_room/press_releases/2008/06-05-08_sustainability.html";
wc20080401[4][4] = "h";
wc20080401[4][5] = "a";
wc20080401[4][6] = "Jun 05, 2008";
wc20080401[4][7] = "_top";
wc20080401[4][8] = "|1|4";
wc20080401[4][9] = "1";
wc20080401[4][10] = "R";
wc20080401[4][11] = "";
wc20080401[4][12] = "";
wc20080401[4][13] = "";
wc20080401[4][14] = "Read More";

wc20080401[5][0] = 20080507;
wc20080401[5][1] = "Professor Sir Michael G. Marmot Selected as 2008 Recipient of the William B. Graham Prize for Health Services Research ";
wc20080401[5][2] = "";
wc20080401[5][3] = "/press_room/press_releases/2008/05-07-08_graham_prize.html";
wc20080401[5][4] = "h";
wc20080401[5][5] = "a";
wc20080401[5][6] = "May 07, 2008";
wc20080401[5][7] = "_top";
wc20080401[5][8] = "|1|4";
wc20080401[5][9] = "1";
wc20080401[5][10] = "R";
wc20080401[5][11] = "";
wc20080401[5][12] = "";
wc20080401[5][13] = "";
wc20080401[5][14] = "Read More";

wc20080401[6][0] = 20080506;
wc20080401[6][1] = "Baxter\'s Board of Directors Declares Quarterly Dividend ";
wc20080401[6][2] = "";
wc20080401[6][3] = "/press_room/press_releases/2008/05-06-08_dividend.html";
wc20080401[6][4] = "h";
wc20080401[6][5] = "a";
wc20080401[6][6] = "May 06, 2008";
wc20080401[6][7] = "_top";
wc20080401[6][8] = "|1|3";
wc20080401[6][9] = "";
wc20080401[6][10] = "R";
wc20080401[6][11] = "";
wc20080401[6][12] = "Shareholders Re-elect Directors and Ratify Auditor at Annual Meeting";
wc20080401[6][13] = "";
wc20080401[6][14] = "Read More";

wc20080401[7][0] = 20080421;
wc20080401[7][1] = "Baxter Facilities Celebrate Earth Day  ";
wc20080401[7][2] = "";
wc20080401[7][3] = "/press_room/press_releases/2008/04-21-08-earth_day.html";
wc20080401[7][4] = "h";
wc20080401[7][5] = "a";
wc20080401[7][6] = "Apr 21, 2008";
wc20080401[7][7] = "_top";
wc20080401[7][8] = "|1|4";
wc20080401[7][9] = "1";
wc20080401[7][10] = "R";
wc20080401[7][11] = "";
wc20080401[7][12] = "";
wc20080401[7][13] = "";
wc20080401[7][14] = "Read More";

wc20080401[8][0] = 20080417;
wc20080401[8][1] = "Baxter Honors World Hemophilia Day with Donation to World Federation of Hemophilia\'s Global Alliance for Progress ";
wc20080401[8][2] = "";
wc20080401[8][3] = "/press_room/press_releases/2008/04-17-08-world_hemophilia.html";
wc20080401[8][4] = "h";
wc20080401[8][5] = "a";
wc20080401[8][6] = "Apr 17, 2008";
wc20080401[8][7] = "_top";
wc20080401[8][8] = "|1|2";
wc20080401[8][9] = "";
wc20080401[8][10] = "R";
wc20080401[8][11] = "";
wc20080401[8][12] = "Product Donation and Program Support Increases Access to Advanced Therapies for People with Hemophilia around the World";
wc20080401[8][13] = "";
wc20080401[8][14] = "Read More";

wc20080401[9][0] = 20080417;
wc20080401[9][1] = "Baxter Reports Solid First Quarter Financial Results and Raises Full-Year Outlook ";
wc20080401[9][2] = "";
wc20080401[9][3] = "/press_room/press_releases/2008/04-17-08-first_qtr_earnings.html";
wc20080401[9][4] = "h";
wc20080401[9][5] = "a";
wc20080401[9][6] = "Apr 17, 2008";
wc20080401[9][7] = "_top";
wc20080401[9][8] = "|1|3";
wc20080401[9][9] = "";
wc20080401[9][10] = "R";
wc20080401[9][11] = "";
wc20080401[9][12] = "Company Continues to Advance Product Pipeline with Increased Investment in Research &amp; Development";
wc20080401[9][13] = "";
wc20080401[9][14] = "Read More";

wc20080401[10][0] = 20080417;
wc20080401[10][1] = "National Hemophilia Foundation Asks America to Make a Difference with National Fundraising Initiative ";
wc20080401[10][2] = "";
wc20080401[10][3] = "http://www.hemophilia.org/NHFWeb/Resource/StaticPages/menu0/menu7/menu303/WalkRelease_April08.pdf";
wc20080401[10][4] = "h";
wc20080401[10][5] = "a";
wc20080401[10][6] = "Apr 17, 2008";
wc20080401[10][7] = "_blank";
wc20080401[10][8] = "|1|3";
wc20080401[10][9] = "1";
wc20080401[10][10] = "F";
wc20080401[10][11] = "";
wc20080401[10][12] = "";
wc20080401[10][13] = "";
wc20080401[10][14] = "Read More";

wc20080401[11][0] = 20080409;
wc20080401[11][1] = "Baxter\'s V-Link Luer-Activated Device with VitalShield Protective Coating Now Available for Hospitals ";
wc20080401[11][2] = "";
wc20080401[11][3] = "/press_room/press_releases/2008/04-09-08-v-link.html";
wc20080401[11][4] = "h";
wc20080401[11][5] = "a";
wc20080401[11][6] = "Apr 09, 2008";
wc20080401[11][7] = "_top";
wc20080401[11][8] = "|1|7";
wc20080401[11][9] = "";
wc20080401[11][10] = "R";
wc20080401[11][11] = "";
wc20080401[11][12] = "";
wc20080401[11][13] = "";
wc20080401[11][14] = "Read More";

var wc20080701 = MultiDimensionalArray(7,13);
wcnewsarray[idx++] = 20080701;
wc20080701[0][0] = 20080929;
wc20080701[0][1] = "Baxter\'s Antimicrobial IV Technology Now Shown to Kill Six Common Pathogens, Including MRSA and VRE ";
wc20080701[0][2] = "";
wc20080701[0][3] = "/press_room/press_releases/2008/09_29_08_v-link.html";
wc20080701[0][4] = "h";
wc20080701[0][5] = "a";
wc20080701[0][6] = "Sep 29, 2008";
wc20080701[0][7] = "_top";
wc20080701[0][8] = "|1|7";
wc20080701[0][9] = "1";
wc20080701[0][10] = "R";
wc20080701[0][11] = "";
wc20080701[0][12] = "FDA clearance comes as hospitals prepare for new CMS non-payment policy related to HAIs";
wc20080701[0][13] = "";
wc20080701[0][14] = "Read More";

wc20080701[1][0] = 20080922;
wc20080701[1][1] = "Baxter Initiates Phase III Trial for the Treatment of Alzheimer\'s Disease ";
wc20080701[1][2] = "";
wc20080701[1][3] = "/press_room/press_releases/2008/09_22_08_alzheimers_phase_iii_trial.html";
wc20080701[1][4] = "h";
wc20080701[1][5] = "a";
wc20080701[1][6] = "Sep 22, 2008";
wc20080701[1][7] = "_top";
wc20080701[1][8] = "|1|2";
wc20080701[1][9] = "1";
wc20080701[1][10] = "R";
wc20080701[1][11] = "";
wc20080701[1][12] = "";
wc20080701[1][13] = "";
wc20080701[1][14] = "Read More";

wc20080701[2][0] = 20080905;
wc20080701[2][1] = "Baxter Named to Dow Jones Sustainability Index for Tenth Consecutive Year ";
wc20080701[2][2] = "";
wc20080701[2][3] = "/press_room/press_releases/2008/09_05_08_sustainability_dow_jones.html";
wc20080701[2][4] = "h";
wc20080701[2][5] = "a";
wc20080701[2][6] = "Sep 05, 2008";
wc20080701[2][7] = "_top";
wc20080701[2][8] = "|1|4";
wc20080701[2][9] = "1";
wc20080701[2][10] = "R";
wc20080701[2][11] = "";
wc20080701[2][12] = "Company Named 2008 Medical Products Industry Leader";
wc20080701[2][13] = "";
wc20080701[2][14] = "Read More";

wc20080701[3][0] = 20080825;
wc20080701[3][1] = "Baxter Announces Licensing Agreement for Innocoll\'s Gentamicin Surgical Implant in the United States ";
wc20080701[3][2] = "";
wc20080701[3][3] = "/press_room/press_releases/2008/08-25-08_gentamicin_surgical_implant.html";
wc20080701[3][4] = "h";
wc20080701[3][5] = "a";
wc20080701[3][6] = "Aug 25, 2008";
wc20080701[3][7] = "_top";
wc20080701[3][8] = "|1|2";
wc20080701[3][9] = "1";
wc20080701[3][10] = "R";
wc20080701[3][11] = "";
wc20080701[3][12] = "The antibiotic surgical product may reduce incidence of surgical site infections and reduce post-operative cost and complications";
wc20080701[3][13] = "";
wc20080701[3][14] = "Read More";

wc20080701[4][0] = 20080731;
wc20080701[4][1] = "Children\'s Memorial Hospital Celebrates Opening of Jeffrey Modell Foundation Diagnostic Center for Primary Immunodeficiencies ";
wc20080701[4][2] = "";
wc20080701[4][3] = "/press_releases/2008/07-31-08_childrens_hospital.html";
wc20080701[4][4] = "h";
wc20080701[4][5] = "a";
wc20080701[4][6] = "Jul 31, 2008";
wc20080701[4][7] = "_top";
wc20080701[4][8] = "|1|2";
wc20080701[4][9] = "1";
wc20080701[4][10] = "R";
wc20080701[4][11] = "";
wc20080701[4][12] = "";
wc20080701[4][13] = "";
wc20080701[4][14] = "Read More";

wc20080701[5][0] = 20080730;
wc20080701[5][1] = "Announcement of Nine-Month Phase II Study Results For Baxter\'s GAMMAGARD LIQUID And GAMMAGARD S/D Intravenous Immunoglobulin (IGIV) in Patients with Alzheimer\'s Disease ";
wc20080701[5][2] = "";
wc20080701[5][3] = "/press_room/press_releases/2008/07-30-08_gammagard.html";
wc20080701[5][4] = "h";
wc20080701[5][5] = "a";
wc20080701[5][6] = "Jul 30, 2008";
wc20080701[5][7] = "_top";
wc20080701[5][8] = "|1|2";
wc20080701[5][9] = "1";
wc20080701[5][10] = "R";
wc20080701[5][11] = "";
wc20080701[5][12] = "";
wc20080701[5][13] = "";
wc20080701[5][14] = "Read More";

wc20080701[6][0] = 20080729;
wc20080701[6][1] = "Baxter Declares Quarterly Dividend ";
wc20080701[6][2] = "";
wc20080701[6][3] = "/press_room/press_releases/2008/07-29-08_dividend.html";
wc20080701[6][4] = "h";
wc20080701[6][5] = "a";
wc20080701[6][6] = "Jul 29, 2008";
wc20080701[6][7] = "_top";
wc20080701[6][8] = "|1|3";
wc20080701[6][9] = "";
wc20080701[6][10] = "R";
wc20080701[6][11] = "";
wc20080701[6][12] = "";
wc20080701[6][13] = "";
wc20080701[6][14] = "Read More";

wc20080701[7][0] = 20080717;
wc20080701[7][1] = "Baxter Raises Full-Year 2008 Outlook Following Strong Second-Quarter Financial Results ";
wc20080701[7][2] = "";
wc20080701[7][3] = "/press_room/press_releases/2008/07-17-08-second_qtr_earnings.html";
wc20080701[7][4] = "h";
wc20080701[7][5] = "a";
wc20080701[7][6] = "Jul 17, 2008";
wc20080701[7][7] = "_top";
wc20080701[7][8] = "|1|4";
wc20080701[7][9] = "1";
wc20080701[7][10] = "R";
wc20080701[7][11] = "";
wc20080701[7][12] = "Company Posts Second Quarter EPS of $0.85 Per Diluted Share, An Increase of 31 Percent";
wc20080701[7][13] = "";
wc20080701[7][14] = "Read More";

var wc20081001 = MultiDimensionalArray(12,13);
wcnewsarray[idx++] = 20081001;
wc20081001[0][0] = 20081219;
wc20081001[0][1] = "Baxter Plant in Mexico Named Among IndustryWeek\'s Top 10 Best Plants ";
wc20081001[0][2] = "";
wc20081001[0][3] = "/press_room/press_releases/2008/12_19_08_industryweek.html";
wc20081001[0][4] = "h";
wc20081001[0][5] = "a";
wc20081001[0][6] = "Dec 19, 2008";
wc20081001[0][7] = "_top";
wc20081001[0][8] = "|1|4";
wc20081001[0][9] = "1";
wc20081001[0][10] = "R";
wc20081001[0][11] = "";
wc20081001[0][12] = "";
wc20081001[0][13] = "";
wc20081001[0][14] = "Read More";

wc20081001[1][0] = 20081218;
wc20081001[1][1] = "Baxter Receives EMEA Positive Opinion for CELVAPAN, the First Cell Culture-based Pandemic Flu Vaccine ";
wc20081001[1][2] = "";
wc20081001[1][3] = "/press_room/press_releases/2008/12_18_08_celvapan.html";
wc20081001[1][4] = "h";
wc20081001[1][5] = "a";
wc20081001[1][6] = "Dec 18, 2008";
wc20081001[1][7] = "_top";
wc20081001[1][8] = "|1|2";
wc20081001[1][9] = "1";
wc20081001[1][10] = "R";
wc20081001[1][11] = "";
wc20081001[1][12] = "Clinical data from a Phase III and subsequent booster study demonstrate safety, immune response and cross-protective memory";
wc20081001[1][13] = "";
wc20081001[1][14] = "Read More";

wc20081001[2][0] = 20081204;
wc20081001[2][1] = "Baxter Announces Dosing of First Patient in Phase I Clinical Trial of Recombinant Therapy for von Willebrand Disease ";
wc20081001[2][2] = "";
wc20081001[2][3] = "/press_room/press_releases/2008/12_04_08_von_willebrand.html";
wc20081001[2][4] = "h";
wc20081001[2][5] = "a";
wc20081001[2][6] = "Dec 04, 2008";
wc20081001[2][7] = "_top";
wc20081001[2][8] = "|1|2";
wc20081001[2][9] = "1";
wc20081001[2][10] = "R";
wc20081001[2][11] = "";
wc20081001[2][12] = "First Recombinant To Be Tested in von Willebrand Disease (VWD)";
wc20081001[2][13] = "";
wc20081001[2][14] = "Read More";

wc20081001[3][0] = 20081114;
wc20081001[3][1] = "National Hemophilia Foundation and Baxter Announce 2008 Recipients of Clinical Fellowship Program ";
wc20081001[3][2] = "";
wc20081001[3][3] = "/press_room/press_releases/2008/11_14_08_hemophilia.html";
wc20081001[3][4] = "h";
wc20081001[3][5] = "a";
wc20081001[3][6] = "Nov 14, 2008";
wc20081001[3][7] = "_top";
wc20081001[3][8] = "|1|2";
wc20081001[3][9] = "1";
wc20081001[3][10] = "R";
wc20081001[3][11] = "";
wc20081001[3][12] = "Baxter Pledges Renewed Commitment to Program to Support Future Hemophilia Specialists";
wc20081001[3][13] = "";
wc20081001[3][14] = "Read More";

wc20081001[4][0] = 20081113;
wc20081001[4][1] = "Baxter Highlights Recent Sustainability Achievements and Recognition ";
wc20081001[4][2] = "";
wc20081001[4][3] = "/press_room/press_releases/2008/11_13_08_sustainability.html";
wc20081001[4][4] = "h";
wc20081001[4][5] = "a";
wc20081001[4][6] = "Nov 13, 2008";
wc20081001[4][7] = "_top";
wc20081001[4][8] = "|1|4";
wc20081001[4][9] = "1";
wc20081001[4][10] = "R";
wc20081001[4][11] = "";
wc20081001[4][12] = "";
wc20081001[4][13] = "";
wc20081001[4][14] = "Read More";

wc20081001[5][0] = 20081112;
wc20081001[5][1] = "Baxter Declares Quarterly Dividend, Increases Rate 20 Percent ";
wc20081001[5][2] = "";
wc20081001[5][3] = "/press_room/press_releases/2008/11_12_08_dividend.html";
wc20081001[5][4] = "h";
wc20081001[5][5] = "a";
wc20081001[5][6] = "Nov 12, 2008";
wc20081001[5][7] = "_top";
wc20081001[5][8] = "|1|3";
wc20081001[5][9] = "1";
wc20081001[5][10] = "R";
wc20081001[5][11] = "";
wc20081001[5][12] = "";
wc20081001[5][13] = "";
wc20081001[5][14] = "Read More";

wc20081001[6][0] = 20081106;
wc20081001[6][1] = "Chairman and CEO Robert L. Parkinson, Jr. speaks at Howard University ";
wc20081001[6][2] = "";
wc20081001[6][3] = "/press_room/features/2008/09_08-howard_university.html";
wc20081001[6][4] = "h";
wc20081001[6][5] = "a";
wc20081001[6][6] = "Nov 06, 2008";
wc20081001[6][7] = "_top";
wc20081001[6][8] = "|1";
wc20081001[6][9] = "WC";
wc20081001[6][10] = "M";
wc20081001[6][11] = "/images/press_room/features/bob_parkinson_thumbnail.jpg";
wc20081001[6][12] = "Baxter CEO Bob Parkinson presented to students and administrators at Howard University on leadership and other topics.";
wc20081001[6][13] = "Robert L. Parkinson, Jr.";
wc20081001[6][14] = "Read More";

wc20081001[7][0] = 20081023;
wc20081001[7][1] = "Chicago Public Schools Receive Major Corporate Donation for Science Education ";
wc20081001[7][2] = "";
wc20081001[7][3] = "/press_room/press_releases/2008/10_23_08_science_at_work.html";
wc20081001[7][4] = "h";
wc20081001[7][5] = "a";
wc20081001[7][6] = "Oct 23, 2008";
wc20081001[7][7] = "_top";
wc20081001[7][8] = "|1|4";
wc20081001[7][9] = "1";
wc20081001[7][10] = "M";
wc20081001[7][11] = "/images/press_room/features/science_at_work_thumbnail.jpg";
wc20081001[7][12] = "Baxter International Inc. Donates $5 Million to Develop Science Schools and District-Wide Biotech Instruction Program";
wc20081001[7][13] = "Science @ Work logo";
wc20081001[7][14] = "Read More";

wc20081001[8][0] = 20081020;
wc20081001[8][1] = "Baxter Posts Results From a Completed Clinical Study of ADVATE in Children Less Than Six Years Old with Moderately Severe to Severe Hemophilia A Were Published in &lt;i&gt;The Journal of Thrombosis and Haemostasis&lt;/i&gt; ";
wc20081001[8][2] = "";
wc20081001[8][3] = "/press_room/press_releases/2008/10_20_08_advate.html";
wc20081001[8][4] = "h";
wc20081001[8][5] = "a";
wc20081001[8][6] = "Oct 20, 2008";
wc20081001[8][7] = "_top";
wc20081001[8][8] = "|1|2";
wc20081001[8][9] = "1";
wc20081001[8][10] = "R";
wc20081001[8][11] = "";
wc20081001[8][12] = "A Second Study, Published in Thrombosis and Haemostasis, Reports on the Use of ADVATE in People with Moderately Severe to Severe Hemophilia A Undergoing Surgery";
wc20081001[8][13] = "";
wc20081001[8][14] = "Read More";

wc20081001[9][0] = 20081016;
wc20081001[9][1] = "Baxter Posts Strong Sales and Earnings for Third Quarter 2008 ";
wc20081001[9][2] = "";
wc20081001[9][3] = "/press_room/press_releases/2008/10_16_08-third_qtr_earnings.html";
wc20081001[9][4] = "h";
wc20081001[9][5] = "a";
wc20081001[9][6] = "Oct 16, 2008";
wc20081001[9][7] = "_top";
wc20081001[9][8] = "|1|3";
wc20081001[9][9] = "1";
wc20081001[9][10] = "R";
wc20081001[9][11] = "";
wc20081001[9][12] = "Performance Reinforces Company&rsquo;s Positive Outlook";
wc20081001[9][13] = "";
wc20081001[9][14] = "Read More";

wc20081001[10][0] = 20081008;
wc20081001[10][1] = "Growing Demand on Health Care Resources and Increased Incidence of Kidney Disease Draw Attention to Peritoneal Dialysis on its 30th Anniversary ";
wc20081001[10][2] = "";
wc20081001[10][3] = "/press_room/press_releases/2008/10_08_08_pd_anniversary.html";
wc20081001[10][4] = "h";
wc20081001[10][5] = "a";
wc20081001[10][6] = "Oct 08, 2008";
wc20081001[10][7] = "_top";
wc20081001[10][8] = "|1|8";
wc20081001[10][9] = "1";
wc20081001[10][10] = "R";
wc20081001[10][11] = "";
wc20081001[10][12] = "";
wc20081001[10][13] = "";
wc20081001[10][14] = "Read More";

wc20081001[11][0] = 20081008;
wc20081001[11][1] = "Kidney Disease Patient Profiles: Judy and Buddy Martin\'s Story, A Choice To Be At Home ";
wc20081001[11][2] = "";
wc20081001[11][3] = "/press_room/features/2008/10_8_08_martin_01.html";
wc20081001[11][4] = "h";
wc20081001[11][5] = "a";
wc20081001[11][6] = "Oct 08, 2008";
wc20081001[11][7] = "_top";
wc20081001[11][8] = "|1|8";
wc20081001[11][9] = "PC";
wc20081001[11][10] = "M";
wc20081001[11][11] = "/images/press_room/features/kidney_disease_081008_thumbnail.jpg";
wc20081001[11][12] = "Peritoneal dialysis patient Judy Martin and her husband, Buddy, talk about their family history of nephritis and why they chose at-home therapy.";
wc20081001[11][13] = "";
wc20081001[11][14] = "Read More";

wc20081001[12][0] = 20081008;
wc20081001[12][1] = "Kidney Disease Patient Profiles: Judy and Buddy Martin&acute;s Story, Living On PD Therapy ";
wc20081001[12][2] = "";
wc20081001[12][3] = "/press_room/features/2008/10_8_08_martin_01.html";
wc20081001[12][4] = "h";
wc20081001[12][5] = "a";
wc20081001[12][6] = "Oct 08, 2008";
wc20081001[12][7] = "_top";
wc20081001[12][8] = "|1|8";
wc20081001[12][9] = "PC";
wc20081001[12][10] = "M";
wc20081001[12][11] = "/images/press_room/features/kidney_disease2_081008_thumbnail.jpg";
wc20081001[12][12] = "Peritoneal dialysis patient Judy Martin and her husband, Buddy, offer perspective on living a full life on PD therapy and offering inspiration and support to others.";
wc20081001[12][13] = "";
wc20081001[12][14] = "Read More";

var wc20090101 = MultiDimensionalArray(5,13);
wcnewsarray[idx++] = 20090101;
wc20090101[0][0] = 20090122;
wc20090101[0][1] = "Baxter Achieves Record Sales, Earnings and Cash Flow for Full-year 2008 ";
wc20090101[0][2] = "/downloads/press_room/press_releases/2009/01_22_09-yearendearnings.pdf";
wc20090101[0][3] = "/press_room/press_releases/2009/01_22_09-yearendearnings.html";
wc20090101[0][4] = "h";
wc20090101[0][5] = "a";
wc20090101[0][6] = "Jan 22, 2009";
wc20090101[0][7] = "_top";
wc20090101[0][8] = "|1|3";
wc20090101[0][9] = "1";
wc20090101[0][10] = "R";
wc20090101[0][11] = "";
wc20090101[0][12] = "Company Exceeds Fourth Quarter Earnings Guidance and Provides Double-Digit Earnings Growth Outlook for 2009";
wc20090101[0][13] = "";
wc20090101[0][14] = "Read More";

wc20090101[1][0] = 20090115;
wc20090101[1][1] = "Baxter Collaborates with MedicAlert to Expand Awareness of Glucose Monitor Interference to Enhance Safety in Hospitals ";
wc20090101[1][2] = "/downloads/press_room/press_releases/2009/01_15_09_medicalert.pdf";
wc20090101[1][3] = "/press_room/press_releases/2009/01_15_09_medicalert.html";
wc20090101[1][4] = "h";
wc20090101[1][5] = "a";
wc20090101[1][6] = "Jan 15, 2009";
wc20090101[1][7] = "_top";
wc20090101[1][8] = "|1|8";
wc20090101[1][9] = "1";
wc20090101[1][10] = "R";
wc20090101[1][11] = "";
wc20090101[1][12] = "Releases New Code of Conduct and Highlights Other Recent Achievements";
wc20090101[1][13] = "";
wc20090101[1][14] = "Read More";

wc20090101[2][0] = 20090114;
wc20090101[2][1] = "Baxter&rsquo;s Renal HomeCare Services Recognized with International Service Excellence Award ";
wc20090101[2][2] = "/downloads/press_room/press_releases/2009/01_14_09_homecare_services.pdf";
wc20090101[2][3] = "/press_room/press_releases/2009/01_14_09_homecare_services.html";
wc20090101[2][4] = "h";
wc20090101[2][5] = "a";
wc20090101[2][6] = "Jan 14, 2009";
wc20090101[2][7] = "_top";
wc20090101[2][8] = "|1|8";
wc20090101[2][9] = "1";
wc20090101[2][10] = "R";
wc20090101[2][11] = "";
wc20090101[2][12] = "";
wc20090101[2][13] = "";
wc20090101[2][14] = "Read More";

wc20090101[3][0] = 20090112;
wc20090101[3][1] = "Baxter Announces 2008 Renal Discoveries Grant Winners  ";
wc20090101[3][2] = "/downloads/press_room/press_releases/2009/01_12_09_renal_grants.pdf";
wc20090101[3][3] = "/press_room/press_releases/2009/01_12_09_renal_grants.html";
wc20090101[3][4] = "h";
wc20090101[3][5] = "a";
wc20090101[3][6] = "Jan 12, 2009";
wc20090101[3][7] = "_top";
wc20090101[3][8] = "|1|8";
wc20090101[3][9] = "1";
wc20090101[3][10] = "R";
wc20090101[3][11] = "";
wc20090101[3][12] = "Grants support the highest quality clinical research from around the world to advance knowledge and treatment of kidney disease";
wc20090101[3][13] = "";
wc20090101[3][14] = "Read More";

wc20090101[4][0] = 20090109;
wc20090101[4][1] = "Baxter Supports Science Education ";
wc20090101[4][2] = "";
wc20090101[4][3] = "/press_room/features/2009/01_09_09_lindblom_report.html";
wc20090101[4][4] = "h";
wc20090101[4][5] = "a";
wc20090101[4][6] = "Jan 09, 2009";
wc20090101[4][7] = "_top";
wc20090101[4][8] = "|1|4";
wc20090101[4][9] = "1";
wc20090101[4][10] = "M";
wc20090101[4][11] = "/images/press_room/features/science_at_work_thumbnail.jpg";
wc20090101[4][12] = "Students from Chicago\'s Lindblom Math and Science Academy high school visited Baxter to conduct research for a major class project as part of the company\'s ongoing Science@Work education initiative.";
wc20090101[4][13] = "Science @ Work";
wc20090101[4][14] = "Read More";

wc20090101[5][0] = 20090105;
wc20090101[5][1] = "Phase III Trial Begins for GAMMAGARD LIQUID Plus rHuPH20 in Primary Immunodeficiency Patients ";
wc20090101[5][2] = "/downloads/press_room/press_releases/2009/01_05_09_halozyme.pdf";
wc20090101[5][3] = "/press_room/press_releases/2009/01_05_09_halozyme.html";
wc20090101[5][4] = "h";
wc20090101[5][5] = "a";
wc20090101[5][6] = "Jan 05, 2009";
wc20090101[5][7] = "_top";
wc20090101[5][8] = "|1|2|6";
wc20090101[5][9] = "1";
wc20090101[5][10] = "R";
wc20090101[5][11] = "";
wc20090101[5][12] = "";
wc20090101[5][13] = "";
wc20090101[5][14] = "Read More";

var wc20090201 = MultiDimensionalArray(1,13);
wcnewsarray[idx++] = 20090201;
wc20090201[0][0] = 20090217;
wc20090201[0][1] = "Baxter Declares Quarterly Dividend ";
wc20090201[0][2] = "/downloads/press_room/press_releases/2009/02_17_09-dividend.pdf";
wc20090201[0][3] = "/press_room/press_releases/2009/02_17_09-dividend.html";
wc20090201[0][4] = "h";
wc20090201[0][5] = "a";
wc20090201[0][6] = "Feb 17, 2009";
wc20090201[0][7] = "";
wc20090201[0][8] = "|1|3";
wc20090201[0][9] = "1";
wc20090201[0][10] = "R";
wc20090201[0][11] = "";
wc20090201[0][12] = "";
wc20090201[0][13] = "";
wc20090201[0][14] = "Read More";

wc20090201[1][0] = 20090211;
wc20090201[1][1] = "Baxter Recognized Among Global 100 Most Sustainable Corporations ";
wc20090201[1][2] = "/downloads/press_room/press_releases/2009/02_11_09-sustainability.pdf";
wc20090201[1][3] = "/press_room/press_releases/2009/02_11_09-sustainability.html";
wc20090201[1][4] = "h";
wc20090201[1][5] = "a";
wc20090201[1][6] = "Feb 11, 2009";
wc20090201[1][7] = "";
wc20090201[1][8] = "|1|4";
wc20090201[1][9] = "1";
wc20090201[1][10] = "R";
wc20090201[1][11] = "";
wc20090201[1][12] = "Releases New Code of Conduct and Highlights Other Recent Achievements";
wc20090201[1][13] = "";
wc20090201[1][14] = "Read More";

var wc20090301 = MultiDimensionalArray(4,13);
wcnewsarray[idx++] = 20090301;
wc20090301[0][0] = 20090330;
wc20090301[0][1] = "Largest CD34+ Adult Stem Cell Study for Heart Disease Shows Improved Exercise Tolerance for Severe Angina Patients ";
wc20090301[0][2] = "";
wc20090301[0][3] = "http://www.northwestern.edu/";
wc20090301[0][4] = "h";
wc20090301[0][5] = "a";
wc20090301[0][6] = "Mar 30, 2009";
wc20090301[0][7] = "_blank";
wc20090301[0][8] = "|1|2";
wc20090301[0][9] = "1";
wc20090301[0][10] = "F";
wc20090301[0][11] = "";
wc20090301[0][12] = "";
wc20090301[0][13] = "";
wc20090301[0][14] = "Read More";

wc20090301[1][0] = 20090316;
wc20090301[1][1] = "Data Presented at AAAAI Reinforce Baxter\'s Commitment to Making GAMMAGARD LIQUID Therapy More Convenient ";
wc20090301[1][2] = "/downloads/press_room/press_releases/2009/03_16_09_aaaai.pdf";
wc20090301[1][3] = "/press_room/press_releases/2009/03_16_09_aaaai.html";
wc20090301[1][4] = "h";
wc20090301[1][5] = "a";
wc20090301[1][6] = "Mar 16, 2009";
wc20090301[1][7] = "";
wc20090301[1][8] = "|1|2|6";
wc20090301[1][9] = "1";
wc20090301[1][10] = "R";
wc20090301[1][11] = "";
wc20090301[1][12] = "";
wc20090301[1][13] = "";
wc20090301[1][14] = "Read More";

wc20090301[2][0] = 20090311;
wc20090301[2][1] = "FDA Classifies Recent Urgent Device Correction on Baxter\'s Colleague Infusion Pump as a Class I Recall ";
wc20090301[2][2] = "/downloads/press_room/press_releases/2009/03_11_09_colleague.pdf";
wc20090301[2][3] = "/press_room/press_releases/2009/03_11_09_colleague.html";
wc20090301[2][4] = "h";
wc20090301[2][5] = "a";
wc20090301[2][6] = "Mar 11, 2009";
wc20090301[2][7] = "";
wc20090301[2][8] = "|1|7";
wc20090301[2][9] = "1";
wc20090301[2][10] = "R";
wc20090301[2][11] = "";
wc20090301[2][12] = "Models Include: All COLLEAGUE Volumetric Infusion Pump Mono 2M8151 and 2M8153, CX 2M8161 and 2M8163, and CXE 2M9161 and 2M9163";
wc20090301[2][13] = "";
wc20090301[2][14] = "Read More";

wc20090301[3][0] = 20090310;
wc20090301[3][1] = "Baxter and Its Foundation Contribute Nearly $44 Million in 2008 to Address Critical Needs Locally and Globally ";
wc20090301[3][2] = "/downloads/press_room/press_releases/2009/03_10_09_foundation_2008.pdf";
wc20090301[3][3] = "/press_room/press_releases/2009/03_10_09_foundation_2008.html";
wc20090301[3][4] = "h";
wc20090301[3][5] = "a";
wc20090301[3][6] = "Mar 10, 2009";
wc20090301[3][7] = "";
wc20090301[3][8] = "|1|4";
wc20090301[3][9] = "1";
wc20090301[3][10] = "R";
wc20090301[3][11] = "";
wc20090301[3][12] = "";
wc20090301[3][13] = "";
wc20090301[3][14] = "Read More";

wc20090301[4][0] = 20090305;
wc20090301[4][1] = "Chronic Kidney Disease Incidence Grows While Awareness Among Those Most At Risk Lags ";
wc20090301[4][2] = "/downloads/press_room/press_releases/2009/03_05_09_world_kidney_day.pdf";
wc20090301[4][3] = "/press_room/press_releases/2009/03_05_09_world_kidney_day.html";
wc20090301[4][4] = "h";
wc20090301[4][5] = "a";
wc20090301[4][6] = "Mar 05, 2009";
wc20090301[4][7] = "";
wc20090301[4][8] = "|1|8";
wc20090301[4][9] = "1";
wc20090301[4][10] = "R";
wc20090301[4][11] = "";
wc20090301[4][12] = "Baxter Reminds Those at Risk of Silent Killer to Get Screened and Know Treatment Options on World Kidney Day";
wc20090301[4][13] = "";
wc20090301[4][14] = "Read More";

var wc20090401 = MultiDimensionalArray(4,13);
wcnewsarray[idx++] = 20090401;
wc20090401[0][0] = 20090429;
wc20090401[0][1] = "Baxter and the Jeffrey Modell Foundation Celebrate World Day of Immunology, Dedicate New Center for Primary Immunodeficiencies at the Federal University of Sao Paulo ";
wc20090401[0][2] = "/downloads/press_room/press_releases/2009/04_29_09-modell_foundation.pdf";
wc20090401[0][3] = "/press_room/press_releases/2009/04_29_09-modell_foundation.html";
wc20090401[0][4] = "h";
wc20090401[0][5] = "a";
wc20090401[0][6] = "Apr 29, 2009";
wc20090401[0][7] = "";
wc20090401[0][8] = "|1|2";
wc20090401[0][9] = "1";
wc20090401[0][10] = "R";
wc20090401[0][11] = "";
wc20090401[0][12] = "Treatment and Diagnosis Awareness Activities in United States, Brazil and Germany";
wc20090401[0][13] = "";
wc20090401[0][14] = "Read More";

wc20090401[1][0] = 20090416;
wc20090401[1][1] = "Baxter Announces Strong First Quarter Financial Results ";
wc20090401[1][2] = "/downloads/press_room/press_releases/2009/04_16_09-first_qtr_earnings.pdf";
wc20090401[1][3] = "/press_room/press_releases/2009/04_16_09-first_qtr_earnings.html";
wc20090401[1][4] = "h";
wc20090401[1][5] = "a";
wc20090401[1][6] = "Apr 16, 2009";
wc20090401[1][7] = "";
wc20090401[1][8] = "|1|3";
wc20090401[1][9] = "1";
wc20090401[1][10] = "R";
wc20090401[1][11] = "";
wc20090401[1][12] = "Company Reports First Quarter Earnings of $0.83 Per Diluted Share and Provides Updated Full-Year Outlook";
wc20090401[1][13] = "";
wc20090401[1][14] = "Read More";

wc20090401[2][0] = 20090415;
wc20090401[2][1] = "Baxter Partners with World Federation of Hemophilia to Heighten Awareness of Vital Role of Comprehensive Care in Hemophilia Management and Global Disparities in Care ";
wc20090401[2][2] = "/downloads/press_room/press_releases/2009/04_15_09_world_hemophilia_day.pdf";
wc20090401[2][3] = "/press_room/press_releases/2009/04_15_09_world_hemophilia_day.html";
wc20090401[2][4] = "h";
wc20090401[2][5] = "a";
wc20090401[2][6] = "Apr 15, 2009";
wc20090401[2][7] = "";
wc20090401[2][8] = "|1|2";
wc20090401[2][9] = "1";
wc20090401[2][10] = "R";
wc20090401[2][11] = "";
wc20090401[2][12] = "&ldquo;Together, We Care&rdquo; Educational Video Podcast Launched on World Hemophilia Day to Highlight Need for Greater Access to Treatment";
wc20090401[2][13] = "";
wc20090401[2][14] = "Read More";

wc20090401[3][0] = 20090415;
wc20090401[3][1] = "Baxter Enters into Exclusive Distribution Agreement with Sigma International for Infusion Pumps ";
wc20090401[3][2] = "/downloads/press_room/press_releases/2009/04_15_09_sigma.pdf";
wc20090401[3][3] = "/press_room/press_releases/2009/04_15_09_sigma.html";
wc20090401[3][4] = "h";
wc20090401[3][5] = "a";
wc20090401[3][6] = "Apr 15, 2009";
wc20090401[3][7] = "";
wc20090401[3][8] = "|1|7";
wc20090401[3][9] = "1";
wc20090401[3][10] = "R";
wc20090401[3][11] = "";
wc20090401[3][12] = "Baxter Acquires Minority Stake in SIGMA with an Option to Purchase Remaining Portion of Company";
wc20090401[3][13] = "";
wc20090401[3][14] = "Read More";

wc20090401[4][0] = 20090414;
wc20090401[4][1] = "Baxter Included Among &quot;World\'s Most Ethical Companies&quot; ";
wc20090401[4][2] = "";
wc20090401[4][3] = "http://ethisphere.com/wme2009/";
wc20090401[4][4] = "h";
wc20090401[4][5] = "a";
wc20090401[4][6] = "Apr 14, 2009";
wc20090401[4][7] = "_blank";
wc20090401[4][8] = "|1";
wc20090401[4][9] = "1";
wc20090401[4][10] = "F";
wc20090401[4][11] = "";
wc20090401[4][12] = "";
wc20090401[4][13] = "";
wc20090401[4][14] = "Read More";

var wc20090501 = MultiDimensionalArray(6,13);
wcnewsarray[idx++] = 20090501;
wc20090501[0][0] = 20090528;
wc20090501[0][1] = "AHRQ Director Carolyn Clancy, MD, Selected as 2009 Recipient of the William B. Graham Prize for Health Services Research  ";
wc20090501[0][2] = "/downloads/press_room/press_releases/2009/05_28_09-graham_prize.pdf";
wc20090501[0][3] = "/press_room/press_releases/2009/05_28_09-graham_prize.html";
wc20090501[0][4] = "h";
wc20090501[0][5] = "a";
wc20090501[0][6] = "May 28, 2009";
wc20090501[0][7] = "";
wc20090501[0][8] = "|1|4";
wc20090501[0][9] = "1";
wc20090501[0][10] = "R";
wc20090501[0][11] = "";
wc20090501[0][12] = "";
wc20090501[0][13] = "";
wc20090501[0][14] = "Read More";

wc20090501[1][0] = 20090527;
wc20090501[1][1] = "Baxter Recognized Among World\'s Most Ethical Companies ";
wc20090501[1][2] = "/downloads/press_room/press_releases/2009/05_27_09-sustainability.pdf";
wc20090501[1][3] = "/press_room/press_releases/2009/05_27_09-sustainability.html";
wc20090501[1][4] = "h";
wc20090501[1][5] = "a";
wc20090501[1][6] = "May 27, 2009";
wc20090501[1][7] = "";
wc20090501[1][8] = "|1|4";
wc20090501[1][9] = "1";
wc20090501[1][10] = "R";
wc20090501[1][11] = "";
wc20090501[1][12] = "Company Also Highlights its Commitment to Local Communities";
wc20090501[1][13] = "";
wc20090501[1][14] = "Read More";

wc20090501[2][0] = 20090515;
wc20090501[2][1] = "Baxter Announces Findings from Premix Heparin IV Bag Investigation Related to Beebe Medical Center Adverse Event Reports ";
wc20090501[2][2] = "/downloads/press_room/press_releases/2009/05_15_09-heparin.pdf";
wc20090501[2][3] = "/press_room/press_releases/2009/05_15_09-heparin.html";
wc20090501[2][4] = "h";
wc20090501[2][5] = "a";
wc20090501[2][6] = "May 15, 2009";
wc20090501[2][7] = "";
wc20090501[2][8] = "|1|7";
wc20090501[2][9] = "1";
wc20090501[2][10] = "R";
wc20090501[2][11] = "";
wc20090501[2][12] = "Phase IV Trial to Evaluate a New ";
wc20090501[2][13] = "";
wc20090501[2][14] = "Read More";

wc20090501[3][0] = 20100204;
wc20090501[3][1] = "NORD To Honor Rare Disease Pioneers ";
wc20090501[3][2] = "";
wc20090501[3][3] = "http://www.rarediseases.org/news/Pioneers";
wc20090501[3][4] = "h";
wc20090501[3][5] = "a";
wc20090501[3][6] = "Feb 04, 2010";
wc20090501[3][7] = "_blank";
wc20090501[3][8] = "|1|2";
wc20090501[3][9] = "1";
wc20090501[3][10] = "F";
wc20090501[3][11] = "";
wc20090501[3][12] = "";
wc20090501[3][13] = "";
wc20090501[3][14] = "Read More";

wc20090501[4][0] = 20090507;
wc20090501[4][1] = "Baxter Working on Vaccine for A/H1N1 Influenza ";
wc20090501[4][2] = "/downloads/press_room/press_releases/2009/05_07_09-A-H1N1.pdf";
wc20090501[4][3] = "/press_room/press_releases/2009/05_07_09-A-H1N1.html";
wc20090501[4][4] = "h";
wc20090501[4][5] = "a";
wc20090501[4][6] = "May 07, 2009";
wc20090501[4][7] = "";
wc20090501[4][8] = "|1|2|6";
wc20090501[4][9] = "1";
wc20090501[4][10] = "R";
wc20090501[4][11] = "";
wc20090501[4][12] = "";
wc20090501[4][13] = "";
wc20090501[4][14] = "Read More";

wc20090501[5][0] = 20090507;
wc20090501[5][1] = "Statement: Baxter Working on Vaccine for A/H1N1 Influenza ";
wc20090501[5][2] = "";
wc20090501[5][3] = "/press_room/press_releases/2009/05_07_09-A-H1N1.html";
wc20090501[5][4] = "h";
wc20090501[5][5] = "a";
wc20090501[5][6] = "May 07, 2009";
wc20090501[5][7] = "";
wc20090501[5][8] = "|1|2";
wc20090501[5][9] = "1";
wc20090501[5][10] = "F";
wc20090501[5][11] = "";
wc20090501[5][12] = "";
wc20090501[5][13] = "";
wc20090501[5][14] = "Read More";

wc20090501[6][0] = 20090505;
wc20090501[6][1] = "Baxter&rsquo;s Board of Directors Declares Quarterly Dividend ";
wc20090501[6][2] = "/downloads/press_room/press_releases/2009/05_05_09-dividend.pdf";
wc20090501[6][3] = "/press_room/features/2009/05_05_09-dividend.html";
wc20090501[6][4] = "h";
wc20090501[6][5] = "a";
wc20090501[6][6] = "May 05, 2009";
wc20090501[6][7] = "";
wc20090501[6][8] = "|1|3";
wc20090501[6][9] = "1";
wc20090501[6][10] = "R";
wc20090501[6][11] = "";
wc20090501[6][12] = "";
wc20090501[6][13] = "";
wc20090501[6][14] = "Read More";

var wc20090601 = MultiDimensionalArray(4,13);
wcnewsarray[idx++] = 20090601;
wc20090601[0][0] = 20090623;
wc20090601[0][1] = "Baxter to Acquire Continuous Renal Replacement Therapy Business from Edwards Lifesciences ";
wc20090601[0][2] = "/downloads/press_room/press_releases/2009/06_23_09-crrt_edwards.pdf";
wc20090601[0][3] = "/press_room/press_releases/2009/06_23_09-crrt_edwards.html";
wc20090601[0][4] = "h";
wc20090601[0][5] = "a";
wc20090601[0][6] = "Jun 23, 2009";
wc20090601[0][7] = "";
wc20090601[0][8] = "|1|8";
wc20090601[0][9] = "1";
wc20090601[0][10] = "R";
wc20090601[0][11] = "";
wc20090601[0][12] = "";
wc20090601[0][13] = "";
wc20090601[0][14] = "Read More";

wc20090601[1][0] = 20090618;
wc20090601[1][1] = "Baxter Highlights Progress Toward Sustainability Priorities in 10th Annual Sustainability Report ";
wc20090601[1][2] = "/downloads/press_room/press_releases/2009/06_18_09-sustainability.pdf";
wc20090601[1][3] = "/press_room/press_releases/2009/06_18_09-sustainability.html";
wc20090601[1][4] = "h";
wc20090601[1][5] = "a";
wc20090601[1][6] = "Jun 18, 2009";
wc20090601[1][7] = "";
wc20090601[1][8] = "|1|4";
wc20090601[1][9] = "1";
wc20090601[1][10] = "R";
wc20090601[1][11] = "";
wc20090601[1][12] = "";
wc20090601[1][13] = "";
wc20090601[1][14] = "Read More";

wc20090601[2][0] = 20090616;
wc20090601[2][1] = "Baxter Collaborating with Leading Institutions to Investigate Innovative Approach for Treating Dehyd ";
wc20090601[2][2] = "/downloads/press_room/press_releases/2009/06_16_09-hylenex.pdf";
wc20090601[2][3] = "/press_room/press_releases/2009/06_16_09-hylenex.html";
wc20090601[2][4] = "h";
wc20090601[2][5] = "a";
wc20090601[2][6] = "Jun 16, 2009";
wc20090601[2][7] = "";
wc20090601[2][8] = "|1|6|7";
wc20090601[2][9] = "1";
wc20090601[2][10] = "R";
wc20090601[2][11] = "";
wc20090601[2][12] = "Phase IV Trial to Evaluate a New Method That May Improve Patient Experience";
wc20090601[2][13] = "";
wc20090601[2][14] = "Read More";

wc20090601[3][0] = 20090612;
wc20090601[3][1] = "Baxter Advances to Full-Scale Production of A/H1N1 Vaccine ";
wc20090601[3][2] = "/downloads/press_room/press_releases/2009/06_12_09-A-H1N1.pdf";
wc20090601[3][3] = "/press_room/press_releases/2009/06_12_09-A-H1N1.html";
wc20090601[3][4] = "h";
wc20090601[3][5] = "a";
wc20090601[3][6] = "Jun 12, 2009";
wc20090601[3][7] = "";
wc20090601[3][8] = "|1|2|6";
wc20090601[3][9] = "1";
wc20090601[3][10] = "R";
wc20090601[3][11] = "";
wc20090601[3][12] = "Anticipates Delivery As Early As July";
wc20090601[3][13] = "";
wc20090601[3][14] = "Read More";

wc20090601[4][0] = 20090610;
wc20090601[4][1] = "Lindblom Math and Science Academy Students Present Projects ";
wc20090601[4][2] = "";
wc20090601[4][3] = "/press_room/features/2009/06_10_09_lindblom_report.html";
wc20090601[4][4] = "h";
wc20090601[4][5] = "a";
wc20090601[4][6] = "Jun 10, 2009";
wc20090601[4][7] = "";
wc20090601[4][8] = "|1|4|6";
wc20090601[4][9] = "1";
wc20090601[4][10] = "M";
wc20090601[4][11] = "/images/press_room/features/lindblom_090610_thumbnail.jpg";
wc20090601[4][12] = "In April 2009, high school students from Chicago\'s Lindblom Math and Science Academy presented their Illinois Innovation Talent research projects at Baxter\'s headquarters.";
wc20090601[4][13] = "";
wc20090601[4][14] = "Read More";

var wc20090701 = MultiDimensionalArray(4,13);
wcnewsarray[idx++] = 20090701;
wc20090701[0][0] = 20090728;
wc20090701[0][1] = "Baxter Declares Quarterly Dividend and Announces New Share Repurchase Authorization ";
wc20090701[0][2] = "/downloads/press_room/press_releases/2009/07_28_09-dividend.pdf";
wc20090701[0][3] = "/press_room/press_releases/2009/07_28_09-dividend.html";
wc20090701[0][4] = "h";
wc20090701[0][5] = "a";
wc20090701[0][6] = "Jul 28, 2009";
wc20090701[0][7] = "";
wc20090701[0][8] = "|1|3";
wc20090701[0][9] = "1";
wc20090701[0][10] = "R";
wc20090701[0][11] = "";
wc20090701[0][12] = "";
wc20090701[0][13] = "";
wc20090701[0][14] = "Read More";

wc20090701[1][0] = 20090716;
wc20090701[1][1] = "Baxter Reports Strong Second Quarter 2009 Financial Results and Raises Full-Year Outlook ";
wc20090701[1][2] = "/downloads/press_room/press_releases/2009/07_16_09-second_qtr_earnings.pdf";
wc20090701[1][3] = "/press_room/press_releases/2009/07_16_09-second_qtr_earnings.html";
wc20090701[1][4] = "h";
wc20090701[1][5] = "a";
wc20090701[1][6] = "Jul 16, 2009";
wc20090701[1][7] = "";
wc20090701[1][8] = "|1|3";
wc20090701[1][9] = "1";
wc20090701[1][10] = "R";
wc20090701[1][11] = "";
wc20090701[1][12] = "Second Quarter Earnings Per Diluted Share of $0.96 Exceeds Company Guidance";
wc20090701[1][13] = "";
wc20090701[1][14] = "Read More";

wc20090701[2][0] = 20090715;
wc20090701[2][1] = "Baxter and Halozyme Announce Completion of Patient Enrollment in Phase III Pivotal Trial of GAMMAGARD LIQUID&lt;sup&gt;TM&lt;/sup&gt; with rHuPH20 Enzyme ";
wc20090701[2][2] = "";
wc20090701[2][3] = "http://phx.corporate-ir.net/phoenix.zhtml?c=175436&p=irol-newsArticle&ID=1307856&highlight=";
wc20090701[2][4] = "h";
wc20090701[2][5] = "a";
wc20090701[2][6] = "Jul 15, 2009";
wc20090701[2][7] = "_blank";
wc20090701[2][8] = "|1|2";
wc20090701[2][9] = "1";
wc20090701[2][10] = "F";
wc20090701[2][11] = "";
wc20090701[2][12] = "";
wc20090701[2][13] = "";
wc20090701[2][14] = "Read More";

wc20090701[3][0] = 20090713;
wc20090701[3][1] = "Baxter and Flamel Technologies Announce Collaboration to Formulate Longer Acting Forms of Blood Clotting Factors  ";
wc20090701[3][2] = "";
wc20090701[3][3] = "http://www.flamel.com/pressReleases/20090713";
wc20090701[3][4] = "h";
wc20090701[3][5] = "a";
wc20090701[3][6] = "Jul 13, 2009";
wc20090701[3][7] = "_blank";
wc20090701[3][8] = "|1|2";
wc20090701[3][9] = "1";
wc20090701[3][10] = "F";
wc20090701[3][11] = "";
wc20090701[3][12] = "";
wc20090701[3][13] = "";
wc20090701[3][14] = "Read More";

wc20090701[4][0] = 20090708;
wc20090701[4][1] = "The Baxter International Foundation supports Fundacao Julita and Obra do Ber&ccedil;o ";
wc20090701[4][2] = "";
wc20090701[4][3] = "http://sustainability.baxter.com/community_support/access_to_healthcare/product_donations_grants.html#video_fundacao_julita?WT.svl=www.baxter.com";
wc20090701[4][4] = "h";
wc20090701[4][5] = "a";
wc20090701[4][6] = "Jul 08, 2009";
wc20090701[4][7] = "";
wc20090701[4][8] = "|1|4";
wc20090701[4][9] = "1";
wc20090701[4][10] = "M";
wc20090701[4][11] = "/images/press_room/features/baxter_int_foundation_090508_thumbnail.jpg";
wc20090701[4][12] = "In 2008, The Baxter International Foundation provided grants to Fundacao Julita and Associa&ccedil;&atilde;o Obra do Ber&ccedil;o, two social services organizations in Sao Paulo, Brazil. Learn more about the support being provided to these organizations.";
wc20090701[4][13] = "";
wc20090701[4][14] = "Read More";

var wc20090801 = MultiDimensionalArray(1,13);
wcnewsarray[idx++] = 20090801;
wc20090801[0][0] = 20090831;
wc20090801[0][1] = "Baxter Facilities Worldwide Observe &quot;Baxter World Environment Week&quot; with Local Initiatives ";
wc20090801[0][2] = "/downloads/press_room/press_releases/2009/08_31_09-environment_week.pdf";
wc20090801[0][3] = "/press_room/press_releases/2009/08_31_09-environment_week.html";
wc20090801[0][4] = "h";
wc20090801[0][5] = "a";
wc20090801[0][6] = "Aug 31, 2009";
wc20090801[0][7] = "";
wc20090801[0][8] = "|1|4";
wc20090801[0][9] = "1";
wc20090801[0][10] = "R";
wc20090801[0][11] = "";
wc20090801[0][12] = "Company Also Highlights Recent Recognition and Achievements";
wc20090801[0][13] = "";
wc20090801[0][14] = "Read More";

wc20090801[1][0] = 20090805;
wc20090801[1][1] = "Baxter Completes Production of First Commercial Batches of A/H1N1 Pandemic Vaccine ";
wc20090801[1][2] = "/downloads/press_room/press_releases/2009/08_05_09-A-H1N1.pdf";
wc20090801[1][3] = "/press_room/press_releases/2009/08_05_09-A-H1N1.html";
wc20090801[1][4] = "h";
wc20090801[1][5] = "a";
wc20090801[1][6] = "Aug 05, 2009";
wc20090801[1][7] = "";
wc20090801[1][8] = "|1|4|6";
wc20090801[1][9] = "1";
wc20090801[1][10] = "R";
wc20090801[1][11] = "";
wc20090801[1][12] = "";
wc20090801[1][13] = "";
wc20090801[1][14] = "Read More";

var wc20090901 = MultiDimensionalArray(3,13);
wcnewsarray[idx++] = 20090901;
wc20090901[0][0] = 20090922;
wc20090901[0][1] = "Baxter Tops Healthcare Category in Newsweek Green Rankings ";
wc20090901[0][2] = "";
wc20090901[0][3] = "http://greenrankings.newsweek.com/";
wc20090901[0][4] = "h";
wc20090901[0][5] = "a";
wc20090901[0][6] = "Sep 22, 2009";
wc20090901[0][7] = "_blank";
wc20090901[0][8] = "|1|4";
wc20090901[0][9] = "1";
wc20090901[0][10] = "F";
wc20090901[0][11] = "";
wc20090901[0][12] = "";
wc20090901[0][13] = "";
wc20090901[0][14] = "Read More";

wc20090901[1][0] = 20090916;
wc20090901[1][1] = "Baxter Hosts 2009 Investor Conference ";
wc20090901[1][2] = "/downloads/press_room/press_releases/2009/09_16_09-investor_conference.pdf";
wc20090901[1][3] = "/press_room/press_releases/2009/09_16_09-investor_conference.html";
wc20090901[1][4] = "h";
wc20090901[1][5] = "a";
wc20090901[1][6] = "Sep 16, 2009";
wc20090901[1][7] = "";
wc20090901[1][8] = "|1|3";
wc20090901[1][9] = "1";
wc20090901[1][10] = "R";
wc20090901[1][11] = "";
wc20090901[1][12] = "Baxter Highlights Focus On Innovation and Value Creation Over Five-Year Long-Range Plan";
wc20090901[1][13] = "";
wc20090901[1][14] = "Read More";

wc20090901[2][0] = 20090915;
wc20090901[2][1] = "Carlos Alonso, Corporate Vice President, Latin America, named 2009 CareerFOCUS Eagle Award Winner ";
wc20090901[2][2] = "";
wc20090901[2][3] = "http://www.businesswire.com/news/home/20090915006591/en";
wc20090901[2][4] = "h";
wc20090901[2][5] = "a";
wc20090901[2][6] = "Sep 15, 2009";
wc20090901[2][7] = "_blank";
wc20090901[2][8] = "|1";
wc20090901[2][9] = "1";
wc20090901[2][10] = "F";
wc20090901[2][11] = "";
wc20090901[2][12] = "";
wc20090901[2][13] = "";
wc20090901[2][14] = "Read More";

wc20090901[3][0] = 20090903;
wc20090901[3][1] = "Baxter Named to Dow Jones Sustainability Index for 11th Consecutive Year ";
wc20090901[3][2] = "/downloads/press_room/press_releases/2009/09_03_09-dow_jones.pdf";
wc20090901[3][3] = "/press_room/press_releases/2009/09_03_09-dow_jones.html";
wc20090901[3][4] = "h";
wc20090901[3][5] = "a";
wc20090901[3][6] = "Sep 03, 2009";
wc20090901[3][7] = "";
wc20090901[3][8] = "|1|4";
wc20090901[3][9] = "1";
wc20090901[3][10] = "R";
wc20090901[3][11] = "";
wc20090901[3][12] = "Company Named 2009 Medical Products Industry Leader";
wc20090901[3][13] = "";
wc20090901[3][14] = "Read More";

var wc20091001 = MultiDimensionalArray(11,13);
wcnewsarray[idx++] = 20091001;
wc20091001[0][0] = 20091030;
wc20091001[0][1] = "Baxter Launches the Education Advantage Scholarship Program for People with Hemophilia A and Inhibitors ";
wc20091001[0][2] = "";
wc20091001[0][3] = "/press_room/press_releases/2009/10_30_09-education_advantage.html";
wc20091001[0][4] = "h";
wc20091001[0][5] = "a";
wc20091001[0][6] = "Oct 30, 2009";
wc20091001[0][7] = "_blank";
wc20091001[0][8] = "|1|2";
wc20091001[0][9] = "1";
wc20091001[0][10] = "R";
wc20091001[0][11] = "";
wc20091001[0][12] = "";
wc20091001[0][13] = "";
wc20091001[0][14] = "Read More";

wc20091001[1][0] = 20091029;
wc20091001[1][1] = "Muchin College Prep Offers Open Access to a Safe, High-Quality Education Innovative Approach Nearly Doubles Average Graduation Rate  (pdf&nbsp;39k)";
wc20091001[1][2] = "";
wc20091001[1][3] = "/downloads/press_room/press_releases/2009/Muchin_Opening_Announcment.pdf";
wc20091001[1][4] = "h";
wc20091001[1][5] = "a";
wc20091001[1][6] = "Oct 29, 2009";
wc20091001[1][7] = "_blank";
wc20091001[1][8] = "|1";
wc20091001[1][9] = "1";
wc20091001[1][10] = "F";
wc20091001[1][11] = "";
wc20091001[1][12] = "";
wc20091001[1][13] = "";
wc20091001[1][14] = "Read More";

wc20091001[2][0] = 20091023;
wc20091001[2][1] = "HYLENEX: Understanding the Patient Experience  ";
wc20091001[2][2] = "";
wc20091001[2][3] = "/press_room/features/2009/10_23_09-hylenex.html";
wc20091001[2][4] = "h";
wc20091001[2][5] = "a";
wc20091001[2][6] = "Oct 23, 2009";
wc20091001[2][7] = "";
wc20091001[2][8] = "|1|7";
wc20091001[2][9] = "WC";
wc20091001[2][10] = "M";
wc20091001[2][11] = "/images/press_room/features/hylenex_091023_thumbnail.jpg";
wc20091001[2][12] = "Pediatric patients, parents and caregivers discuss the benefits of Hylenex for use in pediatric rehydration.";
wc20091001[2][13] = "HYLENEX: Understanding the Patient Experience ";
wc20091001[2][14] = "Read More";

wc20091001[3][0] = 20091015;
wc20091001[3][1] = "Baxter Reports Double-Digit EPS Growth for Third Quarter ";
wc20091001[3][2] = "/downloads/press_room/press_releases/2009/10_15_09-third_qtr_earnings.pdf";
wc20091001[3][3] = "/press_room/press_releases/2009/10_15_09-third_qtr_earnings.html";
wc20091001[3][4] = "h";
wc20091001[3][5] = "a";
wc20091001[3][6] = "Oct 15, 2009";
wc20091001[3][7] = "";
wc20091001[3][8] = "|1|3";
wc20091001[3][9] = "PDF";
wc20091001[3][10] = "R";
wc20091001[3][11] = "";
wc20091001[3][12] = "Company Provides Fourth Quarter Guidance and Raises Full-Year 2009 Financial Outlook";
wc20091001[3][13] = "";
wc20091001[3][14] = "Read More";

wc20091001[4][0] = 20091012;
wc20091001[4][1] = "HYLENEX: Addressing Unmet Needs in Pediatric Dehydration  ";
wc20091001[4][2] = "";
wc20091001[4][3] = "/press_room/features/2009/10_12_09-hylenex.html";
wc20091001[4][4] = "h";
wc20091001[4][5] = "a";
wc20091001[4][6] = "Oct 12, 2009";
wc20091001[4][7] = "";
wc20091001[4][8] = "|1|7";
wc20091001[4][9] = "1";
wc20091001[4][10] = "M";
wc20091001[4][11] = "/images/press_room/features/hylenex_091023_thumbnail.jpg";
wc20091001[4][12] = "As flu season approaches, Baxter is helping emergency departments better prepare for one of the flu\'s common symptoms in children.";
wc20091001[4][13] = "HYLENEX patient";
wc20091001[4][14] = "Read More";

wc20091001[5][0] = 20091007;
wc20091001[5][1] = "Baxter Receives European Commission Approval for CELVAPAN H1N1 Pandemic Influenza Vaccine ";
wc20091001[5][2] = "/downloads/press_room/press_releases/2009/10_07_09-celvapan.pdf";
wc20091001[5][3] = "/press_room/press_releases/2009/10_07_09-celvapan.html";
wc20091001[5][4] = "h";
wc20091001[5][5] = "a";
wc20091001[5][6] = "Oct 07, 2009";
wc20091001[5][7] = "";
wc20091001[5][8] = "|1|2|6";
wc20091001[5][9] = "PDF";
wc20091001[5][10] = "R";
wc20091001[5][11] = "";
wc20091001[5][12] = "";
wc20091001[5][13] = "";
wc20091001[5][14] = "Read More";

wc20091001[6][0] = 20091005;
wc20091001[6][1] = "Baxter Announces the Commercial Launch of HYLENEX at ACEP for use in Pediatric Rehydration ";
wc20091001[6][2] = "/downloads/press_room/press_releases/2009/10_05_09_hylenex.pdf";
wc20091001[6][3] = "/press_room/press_releases/2009/10_05_09-hylenex.html";
wc20091001[6][4] = "h";
wc20091001[6][5] = "a";
wc20091001[6][6] = "Oct 05, 2009";
wc20091001[6][7] = "_blank";
wc20091001[6][8] = "|1|6|7";
wc20091001[6][9] = "PDF";
wc20091001[6][10] = "R";
wc20091001[6][11] = "";
wc20091001[6][12] = "Data from the First Pediatric Rehydration Study, INFUSE-PEDS 1, Published Today in Pediatrics";
wc20091001[6][13] = "";
wc20091001[6][14] = "Read More";

wc20091001[7][0] = 20091005;
wc20091001[7][1] = "Baxter Plant named first Biologics Facility to Win Shingo Honor ";
wc20091001[7][2] = "";
wc20091001[7][3] = "/press_room/features/2009/10_05_09-shingo_la_plant.html";
wc20091001[7][4] = "h";
wc20091001[7][5] = "a";
wc20091001[7][6] = "Oct 05, 2009";
wc20091001[7][7] = "";
wc20091001[7][8] = "|1";
wc20091001[7][9] = "1";
wc20091001[7][10] = "M";
wc20091001[7][11] = "/images/press_room/features/2009/shingologo_sm.gif";
wc20091001[7][12] = "Baxter\'s Los Angeles facility was recently named the first biologics plant to win a Shingo Bronze Medallion for Operational Excellence.";
wc20091001[7][13] = "Shingo Logo";
wc20091001[7][14] = "Read More";

wc20091001[8][0] = 20091002;
wc20091001[8][1] = "Cincinnati Children\'s Opens Jeffrey Modell Foundation Diagnostic Center for Primary Immunodeficienci ";
wc20091001[8][2] = "/downloads/press_room/press_releases/2009/10_02_09-modell.pdf";
wc20091001[8][3] = "/press_room/press_releases/2009/10_02_09-modell.html";
wc20091001[8][4] = "h";
wc20091001[8][5] = "a";
wc20091001[8][6] = "Oct 02, 2009";
wc20091001[8][7] = "";
wc20091001[8][8] = "|1|2";
wc20091001[8][9] = "1";
wc20091001[8][10] = "R";
wc20091001[8][11] = "";
wc20091001[8][12] = "";
wc20091001[8][13] = "";
wc20091001[8][14] = "Read More";

wc20091001[9][0] = 20091002;
wc20091001[9][1] = "Baxter Receives EMEA Positive Opinion for CELVAPAN H1N1 Pandemic Influenza Vaccine ";
wc20091001[9][2] = "/downloads/press_room/press_releases/2009/10_02_09-celvapan.pdf";
wc20091001[9][3] = "/press_room/press_releases/2009/10_02_09-celvapan.html";
wc20091001[9][4] = "h";
wc20091001[9][5] = "a";
wc20091001[9][6] = "Oct 02, 2009";
wc20091001[9][7] = "";
wc20091001[9][8] = "|1|2|6";
wc20091001[9][9] = "1";
wc20091001[9][10] = "R";
wc20091001[9][11] = "";
wc20091001[9][12] = "";
wc20091001[9][13] = "";
wc20091001[9][14] = "Read More";

wc20091001[10][0] = 20091001;
wc20091001[10][1] = "Honor Society of Nursing Recognizes Researcher for Significant Contributions to Geriatric Care ";
wc20091001[10][2] = "/downloads/press_room/press_releases/2009/10_01_09-episteme.pdf";
wc20091001[10][3] = "/press_room/press_releases/2009/10_01_09-episteme.html";
wc20091001[10][4] = "h";
wc20091001[10][5] = "a";
wc20091001[10][6] = "Oct 01, 2009";
wc20091001[10][7] = "";
wc20091001[10][8] = "|1|4|6";
wc20091001[10][9] = "1";
wc20091001[10][10] = "R";
wc20091001[10][11] = "";
wc20091001[10][12] = "Sigma Theta Tau International presents The Baxter International Foundation\'s 2009 Episteme Award";
wc20091001[10][13] = "";
wc20091001[10][14] = "Read More";

wc20091001[11][0] = 20091002;
wc20091001[11][1] = "Cincinnati Children&rsquo;s Opens Jeffrey Modell Foundation Diagnostic Centerfor Primary Immunodeficiencies ";
wc20091001[11][2] = "";
wc20091001[11][3] = "/press_room/press_releases/2009/10_02_09-modell.html";
wc20091001[11][4] = "h";
wc20091001[11][5] = "a";
wc20091001[11][6] = "Oct 02, 2009";
wc20091001[11][7] = "";
wc20091001[11][8] = "|1|2";
wc20091001[11][9] = "1";
wc20091001[11][10] = "F";
wc20091001[11][11] = "";
wc20091001[11][12] = "";
wc20091001[11][13] = "";
wc20091001[11][14] = "Read More";

var wc20091101 = MultiDimensionalArray(3,13);
wcnewsarray[idx++] = 20091101;
wc20091101[0][0] = 20091120;
wc20091101[0][1] = "Lindblom Math and Science Academy Students Participate in Baxter\'s Career Day  ";
wc20091101[0][2] = "";
wc20091101[0][3] = "/press_room/features/2009/11_20_09-lindblom.html";
wc20091101[0][4] = "h";
wc20091101[0][5] = "a";
wc20091101[0][6] = "Nov 20, 2009";
wc20091101[0][7] = "";
wc20091101[0][8] = "|1|4";
wc20091101[0][9] = "1";
wc20091101[0][10] = "M";
wc20091101[0][11] = "/images/press_room/features/science_at_work_thumbnail.jpg";
wc20091101[0][12] = "";
wc20091101[0][13] = "Science@Work logo";
wc20091101[0][14] = "Read More";

wc20091101[1][0] = 20091120;
wc20091101[1][1] = "Baxter Raises Quarterly Dividend ";
wc20091101[1][2] = "/downloads/press_room/press_releases/2009/11_10_09_dividend.pdf";
wc20091101[1][3] = "/press_room/press_releases/2009/11_10_09_dividend.html";
wc20091101[1][4] = "h";
wc20091101[1][5] = "a";
wc20091101[1][6] = "Nov 20, 2009";
wc20091101[1][7] = "";
wc20091101[1][8] = "|1|3";
wc20091101[1][9] = "1";
wc20091101[1][10] = "R";
wc20091101[1][11] = "";
wc20091101[1][12] = "";
wc20091101[1][13] = "";
wc20091101[1][14] = "Read More";

wc20091101[2][0] = 20091119;
wc20091101[2][1] = "Science@Work At Year One: Baxter initiative continues to boost science education for Chicago&rsquo;s students and teachers ";
wc20091101[2][2] = "";
wc20091101[2][3] = "/press_room/features/2009/11_19_09-science.html";
wc20091101[2][4] = "h";
wc20091101[2][5] = "a";
wc20091101[2][6] = "Nov 19, 2009";
wc20091101[2][7] = "";
wc20091101[2][8] = "|1|4";
wc20091101[2][9] = "1";
wc20091101[2][10] = "M";
wc20091101[2][11] = "/images/press_room/features/2009/science_muchin_mason_sm.jpg";
wc20091101[2][12] = "The first-year report card for Baxter&rsquo;s Science@Work initiative is in, and the results are outstanding.";
wc20091101[2][13] = "Jean Mason, CVP, Human Resources";
wc20091101[2][14] = "Read More";

wc20091101[3][0] = 20091109;
wc20091101[3][1] = "New Medicare Benefit to Provide Chronic Kidney Disease Patients with Education on Treatment Options ";
wc20091101[3][2] = "/downloads/press_room/press_releases/2009/11_09_09_-medicare_CKD.pdf";
wc20091101[3][3] = "/press_room/press_releases/2009/11_09_09-medicare_CKD.html";
wc20091101[3][4] = "h";
wc20091101[3][5] = "a";
wc20091101[3][6] = "Nov 09, 2009";
wc20091101[3][7] = "_blank";
wc20091101[3][8] = "|1|8";
wc20091101[3][9] = "1";
wc20091101[3][10] = "R";
wc20091101[3][11] = "";
wc20091101[3][12] = "Education Benefit will Empower Patients to Better Manage their Care";
wc20091101[3][13] = "";
wc20091101[3][14] = "Read More";

var wc20091201 = MultiDimensionalArray(2,13);
wcnewsarray[idx++] = 20091201;
wc20091201[0][0] = 20091216;
wc20091201[0][1] = "Baxter\'s Commitment to Sustainability Extends to Suppliers, Employees, Local Communities ";
wc20091201[0][2] = "/downloads/press_room/press_releases/2009/12_16_09_sustainability.pdf";
wc20091201[0][3] = "/press_room/press_releases/2009/12_16_09_sustainability.html";
wc20091201[0][4] = "h";
wc20091201[0][5] = "a";
wc20091201[0][6] = "Dec 16, 2009";
wc20091201[0][7] = "";
wc20091201[0][8] = "|1|4";
wc20091201[0][9] = "1";
wc20091201[0][10] = "R";
wc20091201[0][11] = "";
wc20091201[0][12] = "Baxter\'s Commitment to Sustainability Extends to Suppliers, Employees, Local Communities";
wc20091201[0][13] = "";
wc20091201[0][14] = "Read More";

wc20091201[1][0] = 20091215;
wc20091201[1][1] = "Baxter Announces 2009 Recipients of Renal Discoveries Extramural Grant Program ";
wc20091201[1][2] = "/downloads/press_room/press_releases/2009/12_15_09_renal_discoveries.pdf";
wc20091201[1][3] = "/press_room/press_releases/2009/12_15_09_renal_discoveries.html";
wc20091201[1][4] = "h";
wc20091201[1][5] = "a";
wc20091201[1][6] = "Dec 15, 2009";
wc20091201[1][7] = "";
wc20091201[1][8] = "|8";
wc20091201[1][9] = "1";
wc20091201[1][10] = "R";
wc20091201[1][11] = "";
wc20091201[1][12] = "";
wc20091201[1][13] = "";
wc20091201[1][14] = "Read More";

wc20091201[2][0] = 20091214;
wc20091201[2][1] = "Baxter Appoints Two Corporate Officers ";
wc20091201[2][2] = "/downloads/press_room/press_releases/2009/12_14_09_officers.pdf";
wc20091201[2][3] = "/press_room/press_releases/2009/12_14_09_officers.html";
wc20091201[2][4] = "h";
wc20091201[2][5] = "a";
wc20091201[2][6] = "Dec 14, 2009";
wc20091201[2][7] = "";
wc20091201[2][8] = "|1";
wc20091201[2][9] = "1";
wc20091201[2][10] = "R";
wc20091201[2][11] = "";
wc20091201[2][12] = "";
wc20091201[2][13] = "";
wc20091201[2][14] = "Read More";

var wc20100101 = MultiDimensionalArray(4,13);
wcnewsarray[idx++] = 20100101;
wc20100101[0][0] = 20100128;
wc20100101[0][1] = "Baxter Achieves Record Sales, Earnings and Cash Flow for Full-Year 2009 ";
wc20100101[0][2] = "/downloads/press_room/press_releases/2010/01_28_10-yearendearnings.pdf";
wc20100101[0][3] = "/press_room/press_releases/2010/01_28_10-yearendearnings.html";
wc20100101[0][4] = "h";
wc20100101[0][5] = "a";
wc20100101[0][6] = "Jan 28, 2010";
wc20100101[0][7] = "";
wc20100101[0][8] = "|1|3";
wc20100101[0][9] = "1";
wc20100101[0][10] = "R";
wc20100101[0][11] = "";
wc20100101[0][12] = "Company Provides Financial Outlook for Full-Year 2010 Including Double-Digit Earnings Growth ";
wc20100101[0][13] = "";
wc20100101[0][14] = "Read More";

wc20100101[1][0] = 20100114;
wc20100101[1][1] = "Baxter Supports Haiti Relief Efforts ";
wc20100101[1][2] = "";
wc20100101[1][3] = "/press_room/news/2010/01_14_10_haiti_relief.html";
wc20100101[1][4] = "f";
wc20100101[1][5] = "a";
wc20100101[1][6] = "Jan 14, 2010";
wc20100101[1][7] = "";
wc20100101[1][8] = "|1|4";
wc20100101[1][9] = "1";
wc20100101[1][10] = "F";
wc20100101[1][11] = "";
wc20100101[1][12] = "";
wc20100101[1][13] = "";
wc20100101[1][14] = "Read More";

wc20100101[2][0] = 20100114;
wc20100101[2][1] = "Heartland Health in Missouri Receives Prestigious $100,000 Foster G. Mcgaw Prize for Excellence In Community Service ";
wc20100101[2][2] = "/downloads/press_room/press_releases/2010/01_14_10-heartland.pdf";
wc20100101[2][3] = "/press_room/press_releases/2010/01_14_10-heartland.html";
wc20100101[2][4] = "h";
wc20100101[2][5] = "a";
wc20100101[2][6] = "Jan 14, 2010";
wc20100101[2][7] = "";
wc20100101[2][8] = "|1|4";
wc20100101[2][9] = "1";
wc20100101[2][10] = "R";
wc20100101[2][11] = "";
wc20100101[2][12] = "Finalists from Omaha, Indianapolis and Lancaster, Pa. also Recognized";
wc20100101[2][13] = "";
wc20100101[2][14] = "Read More";

wc20100101[3][0] = 20100106;
wc20100101[3][1] = "Baxter to Present at the 28th Annual J.P. Morgan Healthcare Conference ";
wc20100101[3][2] = "/downloads/press_room/press_releases/2009/12_15_09_renal_discoveries.pdf";
wc20100101[3][3] = "/press_room/press_releases/2010/01_06_10_JP_morgan.html";
wc20100101[3][4] = "f";
wc20100101[3][5] = "a";
wc20100101[3][6] = "Jan 06, 2010";
wc20100101[3][7] = "";
wc20100101[3][8] = "|1|3";
wc20100101[3][9] = "1";
wc20100101[3][10] = "R";
wc20100101[3][11] = "";
wc20100101[3][12] = "";
wc20100101[3][13] = "";
wc20100101[3][14] = "Read More";

wc20100101[4][0] = 20100105;
wc20100101[4][1] = "Innovative play kit helping children cope with PI disease ";
wc20100101[4][2] = "";
wc20100101[4][3] = "/press_room/features/2010/01_05_10-igiv.html";
wc20100101[4][4] = "h";
wc20100101[4][5] = "a";
wc20100101[4][6] = "Jan 05, 2010";
wc20100101[4][7] = "";
wc20100101[4][8] = "|1|2";
wc20100101[4][9] = "1";
wc20100101[4][10] = "M";
wc20100101[4][11] = "/images/press_room/features/2010/igi_v_doll_button.gif";
wc20100101[4][12] = "Therapeutic Play Kit created by Baxter is making a difference for children with immune disorders.";
wc20100101[4][13] = "Igi-V doll";
wc20100101[4][14] = "Read More";

var wc20100201 = MultiDimensionalArray(3,13);
wcnewsarray[idx++] = 20100201;
wc20100201[0][0] = 20100216;
wc20100201[0][1] = "Baxter Declares Quarterly Dividend ";
wc20100201[0][2] = "/downloads/press_room/press_releases/2010/02_16_10_dividend.pdf";
wc20100201[0][3] = "/press_room/press_releases/2010/02_16_10_dividend.html";
wc20100201[0][4] = "h";
wc20100201[0][5] = "a";
wc20100201[0][6] = "Feb 16, 2010";
wc20100201[0][7] = "";
wc20100201[0][8] = "|1|3";
wc20100201[0][9] = "1";
wc20100201[0][10] = "R";
wc20100201[0][11] = "";
wc20100201[0][12] = "";
wc20100201[0][13] = "";
wc20100201[0][14] = "Read More";

wc20100201[1][0] = 20100203;
wc20100201[1][1] = "Update: Baxter Supports Haiti Relief Efforts ";
wc20100201[1][2] = "";
wc20100201[1][3] = "/press_room/news/2010/02_03_10_update_haiti_relief.html";
wc20100201[1][4] = "h";
wc20100201[1][5] = "a";
wc20100201[1][6] = "Feb 03, 2010";
wc20100201[1][7] = "";
wc20100201[1][8] = "|1|4";
wc20100201[1][9] = "1";
wc20100201[1][10] = "RF";
wc20100201[1][11] = "";
wc20100201[1][12] = "";
wc20100201[1][13] = "";
wc20100201[1][14] = "Read More";

wc20100201[2][0] = 20100203;
wc20100201[2][1] = "Haiti: Baxter Helps Direct Relief Respond With $1.7 M in Medical Products ";
wc20100201[2][2] = "";
wc20100201[2][3] = "http://www.directrelief.org/PressCenter/PressReleases/PressRelease.aspx?id=6378";
wc20100201[2][4] = "f";
wc20100201[2][5] = "a";
wc20100201[2][6] = "Feb 03, 2010";
wc20100201[2][7] = "";
wc20100201[2][8] = "|4";
wc20100201[2][9] = "1";
wc20100201[2][10] = "F";
wc20100201[2][11] = "";
wc20100201[2][12] = "";
wc20100201[2][13] = "";
wc20100201[2][14] = "Read More";

wc20100201[3][0] = 20100201;
wc20100201[3][1] = "Baxter Recognized Among the Global 100 Most Sustainable Corporations ";
wc20100201[3][2] = "";
wc20100201[3][3] = "/press_room/features/2010/02_01_10_global_100.html";
wc20100201[3][4] = "h";
wc20100201[3][5] = "a";
wc20100201[3][6] = "Feb 01, 2010";
wc20100201[3][7] = "";
wc20100201[3][8] = "|1|4";
wc20100201[3][9] = "1";
wc20100201[3][10] = "MF";
wc20100201[3][11] = "/images/press_room/features/2010/global_100_button.gif";
wc20100201[3][12] = "";
wc20100201[3][13] = "Global 100 logo";
wc20100201[3][14] = "Read More";

var wc20100301 = MultiDimensionalArray(6,13);
wcnewsarray[idx++] = 20100301;
wc20100301[0][0] = 20100318;
wc20100301[0][1] = "Baxter and its Foundation Expand Access to Healthcare and Education through 2009 Contributions ";
wc20100301[0][2] = "/downloads/press_room/press_releases/2010/03_18_2010_sustainability.pdf";
wc20100301[0][3] = "http://www.baxter.com/press_room/press_releases/2010/03_18_10_sustainability.html";
wc20100301[0][4] = "h";
wc20100301[0][5] = "a";
wc20100301[0][6] = "Mar 18, 2010";
wc20100301[0][7] = "";
wc20100301[0][8] = "|1|4";
wc20100301[0][9] = "1";
wc20100301[0][10] = "R";
wc20100301[0][11] = "";
wc20100301[0][12] = "Baxter International Inc., its employees and The Baxter International Foundation are committed to supporting global and local communities through financial contributions; product donations; employee volunteerism, including support of education; and other initiatives.";
wc20100301[0][13] = "";
wc20100301[0][14] = "Read More";

wc20100301[1][0] = 20100311;
wc20100301[1][1] = "Baxter Presents Clinical Efficacy Results from Phase III Study of Seasonal Flu Vaccine ";
wc20100301[1][2] = "/downloads/press_room/press_releases/2010/03_11_10_preflucel.pdf";
wc20100301[1][3] = "http://www.baxter.com/press_room/press_releases/2010/03_11_10_preflucel.html";
wc20100301[1][4] = "h";
wc20100301[1][5] = "a";
wc20100301[1][6] = "Mar 11, 2010";
wc20100301[1][7] = "";
wc20100301[1][8] = "|1|2|6";
wc20100301[1][9] = "1";
wc20100301[1][10] = "R";
wc20100301[1][11] = "";
wc20100301[1][12] = "Baxter Presents Clinical Efficacy Results from Phase III Study of Seasonal Flu Vaccine";
wc20100301[1][13] = "";
wc20100301[1][14] = "Read More";

wc20100301[2][0] = 20100311;
wc20100301[2][1] = "Growth of Chronic Kidney Disease Highlights Need for Early Detection, Greater Knowledge of Treatment Options ";
wc20100301[2][2] = "/downloads/press_room/press_releases/2010/03_11_10_world_kidney_day.pdf";
wc20100301[2][3] = "http://www.baxter.com/press_room/press_releases/2010/03_11_10_world_kidney_day.html";
wc20100301[2][4] = "h";
wc20100301[2][5] = "a";
wc20100301[2][6] = "Mar 11, 2010";
wc20100301[2][7] = "";
wc20100301[2][8] = "|1|8";
wc20100301[2][9] = "1";
wc20100301[2][10] = "R";
wc20100301[2][11] = "";
wc20100301[2][12] = "Baxter Encourages At-Risk People with Diabetes and Hypertension to Talk to Their Doctor about Kidney Disease and Treatment Options on World Kidney Day";
wc20100301[2][13] = "";
wc20100301[2][14] = "Read More";

wc20100301[3][0] = 20100310;
wc20100301[3][1] = "The Improbable Journey: Baxter PD Patient Sails Solo Across Atlantic  ";
wc20100301[3][2] = "";
wc20100301[3][3] = "http://www.baxter.com/press_room/features/2010/03_10_10_improbable_journey.html";
wc20100301[3][4] = "h";
wc20100301[3][5] = "a";
wc20100301[3][6] = "Mar 10, 2010";
wc20100301[3][7] = "";
wc20100301[3][8] = "|1|8";
wc20100301[3][9] = "1";
wc20100301[3][10] = "M";
wc20100301[3][11] = "/images/press_room/features/2010/jean_loius_button.gif";
wc20100301[3][12] = "In November 2009, Jean Louis Clemendot set out to do something no one else with end-stage kidney disease had ever done: sail solo across the Atlantic Ocean while undergoing peritoneal dialysis.";
wc20100301[3][13] = "Jean Louis sails across the atlantic";
wc20100301[3][14] = "Read More";

wc20100301[4][0] = 20100302;
wc20100301[4][1] = "FDA Classifies Baxter\'s January HomeChoice Peritoneal Dialysis Cycler Field Corrective Action as a Class I Recall ";
wc20100301[4][2] = "";
wc20100301[4][3] = "http://www.baxter.com/press_room/press_releases/2010/03_02_10_homechoice.html";
wc20100301[4][4] = "h";
wc20100301[4][5] = "a";
wc20100301[4][6] = "Mar 02, 2010";
wc20100301[4][7] = "";
wc20100301[4][8] = "|1|8";
wc20100301[4][9] = "1";
wc20100301[4][10] = "R";
wc20100301[4][11] = "";
wc20100301[4][12] = "Baxter is Deploying Revised Labeling, Training and Upcoming Software Revisions to Further Assist Clinicians and Patients";
wc20100301[4][13] = "";
wc20100301[4][14] = "Read More";

wc20100301[5][0] = 20100302;
wc20100301[5][1] = "Baxter Named One of the 100 Best Corporate Citizens ";
wc20100301[5][2] = "http://www.thecro.com/files/CR100Best.pdf";
wc20100301[5][3] = "http://www.thecro.com/";
wc20100301[5][4] = "h";
wc20100301[5][5] = "a";
wc20100301[5][6] = "Mar 02, 2010";
wc20100301[5][7] = "";
wc20100301[5][8] = "|1|4";
wc20100301[5][9] = "1";
wc20100301[5][10] = "MF";
wc20100301[5][11] = "/images/press_room/features/2010/corp_citizen-2010_button.gif";
wc20100301[5][12] = "";
wc20100301[5][13] = "Corporate Citizen logo";
wc20100301[5][14] = "Read More";

wc20100301[6][0] = 20100301;
wc20100301[6][1] = "Baxter and ApaTech Announce Definitive Agreement  ";
wc20100301[6][2] = "/downloads/press_room/press_releases/2010/03_01_10_tara.pdf";
wc20100301[6][3] = "http://www.baxter.com/press_room/press_releases/2010/03_01_10_tara.html";
wc20100301[6][4] = "h";
wc20100301[6][5] = "a";
wc20100301[6][6] = "Mar 01, 2010";
wc20100301[6][7] = "";
wc20100301[6][8] = "|1|2";
wc20100301[6][9] = "1";
wc20100301[6][10] = "R";
wc20100301[6][11] = "";
wc20100301[6][12] = "Baxter to Acquire All Outstanding Equity of ApaTech, Including ACTIFUSE";
wc20100301[6][13] = "";
wc20100301[6][14] = "Read More";

var wc20100401 = MultiDimensionalArray(12,13);
wcnewsarray[idx++] = 20100401;
wc20100401[0][0] = 20100430;
wc20100401[0][1] = "Bringing Science to Life for Chicago Public School Teachers ";
wc20100401[0][2] = "";
wc20100401[0][3] = "/press_room/features/2010/04_30_10_science_at_work.html";
wc20100401[0][4] = "h";
wc20100401[0][5] = "a";
wc20100401[0][6] = "Apr 30, 2010";
wc20100401[0][7] = "";
wc20100401[0][8] = "|1|6";
wc20100401[0][9] = "1";
wc20100401[0][10] = "M";
wc20100401[0][11] = "/images/press_room/features/science_at_work_thumbnail.jpg";
wc20100401[0][12] = "";
wc20100401[0][13] = "Science@Work";
wc20100401[0][14] = "Read More";

wc20100401[1][0] = 20100429;
wc20100401[1][1] = "Baxter and the Jeffrey Modell Foundation Support Efforts to Increase Awareness of Primary Immunodeficiency during the Annual World Day of Immunology ";
wc20100401[1][2] = "/downloads/press_room/press_releases/2010/04_29_10_wdi.pdf";
wc20100401[1][3] = "/press_room/news/2010/04_29_10_wdi.html";
wc20100401[1][4] = "h";
wc20100401[1][5] = "a";
wc20100401[1][6] = "Apr 29, 2010";
wc20100401[1][7] = "";
wc20100401[1][8] = "|1|2";
wc20100401[1][9] = "1";
wc20100401[1][10] = "F";
wc20100401[1][11] = "";
wc20100401[1][12] = "";
wc20100401[1][13] = "";
wc20100401[1][14] = "Read More";

wc20100401[2][0] = 20100428;
wc20100401[2][1] = "Baxter Welcomes BIO 2010 International Convention to Chicago ";
wc20100401[2][2] = "/downloads/press_room/press_releases/2010/04_28_10_bio.pdf";
wc20100401[2][3] = "/press_room/press_releases/2010/04_28_10_bio.html";
wc20100401[2][4] = "h";
wc20100401[2][5] = "a";
wc20100401[2][6] = "Apr 28, 2010";
wc20100401[2][7] = "";
wc20100401[2][8] = "|1|6";
wc20100401[2][9] = "1";
wc20100401[2][10] = "R";
wc20100401[2][11] = "";
wc20100401[2][12] = "";
wc20100401[2][13] = "";
wc20100401[2][14] = "Read More";

wc20100401[3][0] = 20100427;
wc20100401[3][1] = "Baxter\'s BioPharma Solutions Business Named &quot;Best Contract Manufacturing Organization&quot; at Vaccine Awards ";
wc20100401[3][2] = "";
wc20100401[3][3] = "/press_room/features/2010/04_26_10_bps_vie_award.html";
wc20100401[3][4] = "h";
wc20100401[3][5] = "a";
wc20100401[3][6] = "Apr 27, 2010";
wc20100401[3][7] = "";
wc20100401[3][8] = "|1|7";
wc20100401[3][9] = "1";
wc20100401[3][10] = "M";
wc20100401[3][11] = "/images/press_room/features/2010/vie_award.gif";
wc20100401[3][12] = "Baxter recognized for the first time at the Vaccine Industry Excellence (ViE) Awards, presented during the World Vaccine Congress. These awards recognize significant contributions and accomplishments in the global vaccine industry.  ";
wc20100401[3][13] = "ViE Award Logo";
wc20100401[3][14] = "Read More";

wc20100401[4][0] = 20100423;
wc20100401[4][1] = "Baxter Joins National Kidney Foundation &quot;Partnership for Education&quot; ";
wc20100401[4][2] = "";
wc20100401[4][3] = "/press_room/features/2010/04_23_10_lola_thrower.html";
wc20100401[4][4] = "h";
wc20100401[4][5] = "a";
wc20100401[4][6] = "Apr 23, 2010";
wc20100401[4][7] = "";
wc20100401[4][8] = "|1|5|8";
wc20100401[4][9] = "1";
wc20100401[4][10] = "M";
wc20100401[4][11] = "/images/press_room/features/2010/ytyc_cd_book_sm.jpg";
wc20100401[4][12] = "A new &quot;Partnership for Education&quot; between Baxter and the National Kidney Foundation will help chronic kidney disease patients receive information about treatment options.";
wc20100401[4][13] = "YTYC CD Book";
wc20100401[4][14] = "Read More";

wc20100401[5][0] = 20100422;
wc20100401[5][1] = "Baxter Reports First Quarter 2010 Financial Results In-Line With Guidance ";
wc20100401[5][2] = "/downloads/press_room/press_releases/2010/04_22_10-first_qtr_earnings.pdf";
wc20100401[5][3] = "/press_room/press_releases/2010/04_22_10-first_qtr_earnings_notice.html";
wc20100401[5][4] = "h";
wc20100401[5][5] = "a";
wc20100401[5][6] = "Apr 22, 2010";
wc20100401[5][7] = "";
wc20100401[5][8] = "|1|3";
wc20100401[5][9] = "1";
wc20100401[5][10] = "R";
wc20100401[5][11] = "";
wc20100401[5][12] = "";
wc20100401[5][13] = "";
wc20100401[5][14] = "Read More";

wc20100401[6][0] = 20100415;
wc20100401[6][1] = "Baxter Appoints Ludwig Hantson as President, International ";
wc20100401[6][2] = "/downloads/press_room/press_releases/2010/04_15_10_hanston.pdf";
wc20100401[6][3] = "/press_room/press_releases/2010/04_15_10_hanston.html";
wc20100401[6][4] = "h";
wc20100401[6][5] = "a";
wc20100401[6][6] = "Apr 15, 2010";
wc20100401[6][7] = "";
wc20100401[6][8] = "|1";
wc20100401[6][9] = "1";
wc20100401[6][10] = "R";
wc20100401[6][11] = "";
wc20100401[6][12] = "";
wc20100401[6][13] = "";
wc20100401[6][14] = "Read More";

wc20100401[7][0] = 20100415;
wc20100401[7][1] = "WEBCAST ALERT: Baxter International Inc. First Quarter 2010 Earnings Release Conference Call on April 22, 2010 at 8:30 a.m. Eastern Daylight Time ";
wc20100401[7][2] = "";
wc20100401[7][3] = "http://investor.baxter.com/phoenix.zhtml?c=86121&p=irol-calendar";
wc20100401[7][4] = "h";
wc20100401[7][5] = "a";
wc20100401[7][6] = "Apr 15, 2010";
wc20100401[7][7] = "";
wc20100401[7][8] = "|1|3";
wc20100401[7][9] = "1";
wc20100401[7][10] = "R";
wc20100401[7][11] = "";
wc20100401[7][12] = "Hemophilia and other inherited bleeding disorders are serious conditions that impact millions of people worldwide.  On April 17 of each year, Baxter works with the global community to raise awareness of bleeding disorders, as well as to highlight the need for a collective effort to ensure all patients have access to care and treatment.";
wc20100401[7][13] = "";
wc20100401[7][14] = "Read More";

wc20100401[8][0] = 20100414;
wc20100401[8][1] = "World Hemophilia Day 2010 ";
wc20100401[8][2] = "";
wc20100401[8][3] = "/press_room/features/2010/04_17_10_world_hemophilia_day.html";
wc20100401[8][4] = "h";
wc20100401[8][5] = "a";
wc20100401[8][6] = "Apr 14, 2010";
wc20100401[8][7] = "";
wc20100401[8][8] = "|1|2";
wc20100401[8][9] = "1";
wc20100401[8][10] = "M";
wc20100401[8][11] = "/images/press_room/features/2010/whd_button.gif";
wc20100401[8][12] = "Launches &ldquo;The Many Faces of Bleeding Disorders&rdquo; educational video podcast together with the World Federation of Hemophilia";
wc20100401[8][13] = "WHD";
wc20100401[8][14] = "Read More";

wc20100401[9][0] = 20100414;
wc20100401[9][1] = "Baxter Marks World Hemophilia Day by Reaffirming Ongoing Commitment to Partnering with Community to Raise Standard of Hemophilia Care Around the World ";
wc20100401[9][2] = "/downloads/press_room/press_releases/2010/04_14_10_whd.pdf";
wc20100401[9][3] = "/press_room/press_releases/2010/04_14_10_whd.html";
wc20100401[9][4] = "h";
wc20100401[9][5] = "a";
wc20100401[9][6] = "Apr 14, 2010";
wc20100401[9][7] = "";
wc20100401[9][8] = "|1|2";
wc20100401[9][9] = "1";
wc20100401[9][10] = "R";
wc20100401[9][11] = "";
wc20100401[9][12] = "&lt;UL&gt;  &lt;LI&gt;Ongoing Phase III study currently accepting new participants&lt;/LI&gt;  &lt;LI&gt;Baxter to initiate a second Phase III study&lt;/LI&gt;&lt;/UL&gt;";
wc20100401[9][13] = "";
wc20100401[9][14] = "Read More";

wc20100401[10][0] = 20100413;
wc20100401[10][1] = "Baxter and New York-Presbyterian/Weill Cornell Announce 18-Month Data from Phase II Study of GAMMAGARD in Patients with Alzheimer\'s Disease ";
wc20100401[10][2] = "/downloads/press_room/press_releases/2010/04_13_10_gammagard.pdf";
wc20100401[10][3] = "/press_room/press_releases/2010/04_13_10_gammagard.html";
wc20100401[10][4] = "h";
wc20100401[10][5] = "a";
wc20100401[10][6] = "Apr 13, 2010";
wc20100401[10][7] = "";
wc20100401[10][8] = "|1|2|6";
wc20100401[10][9] = "1";
wc20100401[10][10] = "R";
wc20100401[10][11] = "";
wc20100401[10][12] = "";
wc20100401[10][13] = "";
wc20100401[10][14] = "Read More";

wc20100401[11][0] = 20100407;
wc20100401[11][1] = "New Survey Reveals That Parents Lack Information About Dehydration and Its Treatment ";
wc20100401[11][2] = "/downloads/press_room/press_releases/2010/04_07_10_hylenex.pdf";
wc20100401[11][3] = "/press_room/press_releases/2010/04_07_10_hylenex.html";
wc20100401[11][4] = "h";
wc20100401[11][5] = "a";
wc20100401[11][6] = "Apr 07, 2010";
wc20100401[11][7] = "";
wc20100401[11][8] = "|1|7";
wc20100401[11][9] = "1";
wc20100401[11][10] = "R";
wc20100401[11][11] = "";
wc20100401[11][12] = "TachoSil indicated for use as an adjunct to hemostasis in cardiovascular surgery";
wc20100401[11][13] = "";
wc20100401[11][14] = "Read More";

wc20100401[12][0] = 20100406;
wc20100401[12][1] = "Baxter and Nycomed Announce FDA Approval of TachoSil&reg; ";
wc20100401[12][2] = "/downloads/press_room/press_releases/2010/04_06_10_tachoSil.pdf";
wc20100401[12][3] = "/press_room/press_releases/2010/04_06_10_tachoSil.html";
wc20100401[12][4] = "h";
wc20100401[12][5] = "a";
wc20100401[12][6] = "Apr 06, 2010";
wc20100401[12][7] = "";
wc20100401[12][8] = "|1|2";
wc20100401[12][9] = "1";
wc20100401[12][10] = "R";
wc20100401[12][11] = "";
wc20100401[12][12] = "TachoSil indicated for use as an adjunct to hemostasis in cardiovascular surgery";
wc20100401[12][13] = "";
wc20100401[12][14] = "Read More";

var wc20100501 = MultiDimensionalArray(4,13);
wcnewsarray[idx++] = 20100501;
wc20100501[0][0] = 20100520;
wc20100501[0][1] = "Baxter\'s Charitable Giving Expands Access to Healthcare and Education Worldwide ";
wc20100501[0][2] = "";
wc20100501[0][3] = "/press_room/features/2010/05_14_10_charitable_giving.html";
wc20100501[0][4] = "h";
wc20100501[0][5] = "a";
wc20100501[0][6] = "May 20, 2010";
wc20100501[0][7] = "";
wc20100501[0][8] = "|1|4";
wc20100501[0][9] = "1";
wc20100501[0][10] = "M";
wc20100501[0][11] = "/images/press_room/features/2010/charitable_giving_button.gif";
wc20100501[0][12] = "";
wc20100501[0][13] = "Charitable Giving";
wc20100501[0][14] = "Read More";

wc20100501[1][0] = 20100520;
wc20100501[1][1] = "Princeton Professor Uwe E. Reinhardt, Ph.D., to be Awarded the 2010 William B. Graham Prize for Health Services Research  ";
wc20100501[1][2] = "/downloads/press_room/press_releases/2010/05_20_10_graham_prize.pdf";
wc20100501[1][3] = "/press_room/press_releases/2010/05_20_10_graham_prize.html";
wc20100501[1][4] = "h";
wc20100501[1][5] = "a";
wc20100501[1][6] = "May 20, 2010";
wc20100501[1][7] = "";
wc20100501[1][8] = "|1|4";
wc20100501[1][9] = "1";
wc20100501[1][10] = "R";
wc20100501[1][11] = "";
wc20100501[1][12] = "";
wc20100501[1][13] = "";
wc20100501[1][14] = "Read More";

wc20100501[2][0] = 20100517;
wc20100501[2][1] = "Voluntary Recall of HYLENEX Initiated ";
wc20100501[2][2] = "/downloads/press_room/press_releases/2010/05_17_10_hylenex.pdf";
wc20100501[2][3] = "/press_room/press_releases/2010/05_17_10_hylenex.html";
wc20100501[2][4] = "h";
wc20100501[2][5] = "a";
wc20100501[2][6] = "May 17, 2010";
wc20100501[2][7] = "";
wc20100501[2][8] = "|1|7";
wc20100501[2][9] = "1";
wc20100501[2][10] = "R";
wc20100501[2][11] = "";
wc20100501[2][12] = "";
wc20100501[2][13] = "";
wc20100501[2][14] = "Read More";

wc20100501[3][0] = 20100504;
wc20100501[3][1] = "Baxter\'s Board of Directors Declares Quarterly Dividend ";
wc20100501[3][2] = "/downloads/press_room/press_releases/2010/05_04_10_dividend.pdf";
wc20100501[3][3] = "/press_room/press_releases/2010/05_04_10_dividend.html";
wc20100501[3][4] = "h";
wc20100501[3][5] = "a";
wc20100501[3][6] = "May 04, 2010";
wc20100501[3][7] = "";
wc20100501[3][8] = "|1|3";
wc20100501[3][9] = "1";
wc20100501[3][10] = "R";
wc20100501[3][11] = "";
wc20100501[3][12] = "DEERFIELD, Ill, May 3, 2010 &ndash; Baxter Healthcare Corporation today announced that it will recall COLLEAGUE infusion pumps from the U.S. market pursuant to an order under its existing June 2006 consent decree with the U.S. Food and Drug Administration (FDA).   ";
wc20100501[3][13] = "";
wc20100501[3][14] = "Read More";

wc20100501[4][0] = 20100503;
wc20100501[4][1] = "Baxter to Recall COLLEAGUE Infusion Pumps in U.S. ";
wc20100501[4][2] = "/downloads/press_room/press_releases/2010/05_03_10_colleague.pdf";
wc20100501[4][3] = "/press_room/press_releases/2010/05_03_10_colleague.html";
wc20100501[4][4] = "h";
wc20100501[4][5] = "a";
wc20100501[4][6] = "May 03, 2010";
wc20100501[4][7] = "";
wc20100501[4][8] = "|1|7";
wc20100501[4][9] = "1";
wc20100501[4][10] = "R";
wc20100501[4][11] = "";
wc20100501[4][12] = "DEERFIELD, Ill, May 3, 2010 &ndash; Baxter Healthcare Corporation today announced that it will recall COLLEAGUE infusion pumps from the U.S. market pursuant to an order under its existing June 2006 consent decree with the U.S. Food and Drug Administration (FDA).   ";
wc20100501[4][13] = "";
wc20100501[4][14] = "Read More";

var wc20100601 = MultiDimensionalArray(4,13);
wcnewsarray[idx++] = 20100601;
wc20100601[0][0] = 20100624;
wc20100601[0][1] = "Baxter Highlights Progress Toward Sustainability Priorities, Including First and Only Carbon Trust Certification for Medical Product, in New Report ";
wc20100601[0][2] = "/downloads/press_room/press_releases/2010/06_24_10_sustainability.pdf";
wc20100601[0][3] = "/press_room/press_releases/2010/06_24_10_sustainability.html";
wc20100601[0][4] = "h";
wc20100601[0][5] = "a";
wc20100601[0][6] = "Jun 24, 2010";
wc20100601[0][7] = "";
wc20100601[0][8] = "|1|4";
wc20100601[0][9] = "1";
wc20100601[0][10] = "R";
wc20100601[0][11] = "";
wc20100601[0][12] = "";
wc20100601[0][13] = "";
wc20100601[0][14] = "Read More";

wc20100601[1][0] = 20100617;
wc20100601[1][1] = "Baxter Opens New Research &amp; Development Facility in Alliance Park, Belgium ";
wc20100601[1][2] = "/downloads/press_room/press_releases/2010/06_17_10_alliance_park.pdf";
wc20100601[1][3] = "/press_room/press_releases/2010/06_17_10_alliance_park.html";
wc20100601[1][4] = "f";
wc20100601[1][5] = "a";
wc20100601[1][6] = "Jun 17, 2010";
wc20100601[1][7] = "";
wc20100601[1][8] = "|1|6";
wc20100601[1][9] = "1";
wc20100601[1][10] = "R";
wc20100601[1][11] = "";
wc20100601[1][12] = "";
wc20100601[1][13] = "";
wc20100601[1][14] = "Read More";

wc20100601[2][0] = 20100616;
wc20100601[2][1] = "Baxter Taiwan Celebrates World Hemophilia Day at the Closing Ceremony of the First &quot;Patients without Borders Training Camp&quot; ";
wc20100601[2][2] = "";
wc20100601[2][3] = "/press_room/features/2010/06_16_10_taiwan_whd.html";
wc20100601[2][4] = "h";
wc20100601[2][5] = "a";
wc20100601[2][6] = "Jun 16, 2010";
wc20100601[2][7] = "";
wc20100601[2][8] = "|1|2";
wc20100601[2][9] = "1";
wc20100601[2][10] = "M";
wc20100601[2][11] = "/images/press_room/features/2010/taiwan_whd_sm.gif";
wc20100601[2][12] = "";
wc20100601[2][13] = "World Hemophilia Day logo";
wc20100601[2][14] = "Read More";

wc20100601[3][0] = 20100604;
wc20100601[3][1] = "Baxter Employees Worldwide Celebrate Baxter World Environment Week   ";
wc20100601[3][2] = "";
wc20100601[3][3] = "/press_room/features/2010/06_04_10_environment.html";
wc20100601[3][4] = "h";
wc20100601[3][5] = "a";
wc20100601[3][6] = "Jun 04, 2010";
wc20100601[3][7] = "";
wc20100601[3][8] = "|1|4";
wc20100601[3][9] = "1";
wc20100601[3][10] = "M";
wc20100601[3][11] = "/images/press_room/features/2010/vegetable_garden_sm.gif";
wc20100601[3][12] = "";
wc20100601[3][13] = "Vegetable Garden in Deerfield, IL";
wc20100601[3][14] = "Read More";

wc20100601[4][0] = 20100601;
wc20100601[4][1] = "Baxter Names New President of Renal Business and New Chief Financial Officer ";
wc20100601[4][2] = "/downloads/press_room/press_releases/2010/06_01_10_davis_hombach.pdf";
wc20100601[4][3] = "/press_room/press_releases/2010/06_01_10_davis_hombach.html";
wc20100601[4][4] = "h";
wc20100601[4][5] = "a";
wc20100601[4][6] = "Jun 01, 2010";
wc20100601[4][7] = "";
wc20100601[4][8] = "|1|8";
wc20100601[4][9] = "1";
wc20100601[4][10] = "R";
wc20100601[4][11] = "";
wc20100601[4][12] = "";
wc20100601[4][13] = "";
wc20100601[4][14] = "Read More";

var wc20100701 = MultiDimensionalArray(7,13);
wcnewsarray[idx++] = 20100701;
wc20100701[0][0] = 20100727;
wc20100701[0][1] = "Baxter Declares Quarterly Dividend ";
wc20100701[0][2] = "/downloads/press_room/press_releases/2010/07_27_10_dividend.pdf";
wc20100701[0][3] = "/press_room/press_releases/2010/07_27_10_dividend.html";
wc20100701[0][4] = "h";
wc20100701[0][5] = "a";
wc20100701[0][6] = "Jul 27, 2010";
wc20100701[0][7] = "";
wc20100701[0][8] = "|1|3";
wc20100701[0][9] = "1";
wc20100701[0][10] = "R";
wc20100701[0][11] = "";
wc20100701[0][12] = "";
wc20100701[0][13] = "";
wc20100701[0][14] = "Read More";

wc20100701[1][0] = 20100722;
wc20100701[1][1] = "Baxter Reports Second Quarter Financial Results In Line With Guidance ";
wc20100701[1][2] = "/downloads/press_room/press_releases/2010/07_22_10-second_qtr_earnings.pdf";
wc20100701[1][3] = "/press_room/press_releases/2010/07_22_10-second_qtr_earnings.html";
wc20100701[1][4] = "h";
wc20100701[1][5] = "a";
wc20100701[1][6] = "Jul 22, 2010";
wc20100701[1][7] = "";
wc20100701[1][8] = "|1|3";
wc20100701[1][9] = "1";
wc20100701[1][10] = "R";
wc20100701[1][11] = "";
wc20100701[1][12] = "";
wc20100701[1][13] = "";
wc20100701[1][14] = "Read More";

wc20100701[2][0] = 20100715;
wc20100701[2][1] = "Baxter Opens New Research and Development Facility in Belgium ";
wc20100701[2][2] = "";
wc20100701[2][3] = "/press_room/features/2010/07_15_10_alliance_park.html";
wc20100701[2][4] = "h";
wc20100701[2][5] = "a";
wc20100701[2][6] = "Jul 15, 2010";
wc20100701[2][7] = "";
wc20100701[2][8] = "|1|6";
wc20100701[2][9] = "1";
wc20100701[2][10] = "M";
wc20100701[2][11] = "/images/press_room/features/2010/alliance_sm.gif";
wc20100701[2][12] = "";
wc20100701[2][13] = "";
wc20100701[2][14] = "Read More";

wc20100701[3][0] = 20100713;
wc20100701[3][1] = "Baxter Announces Final Details Regarding Previously Communicated COLLEAGUE Infusion Pump Recall in the U.S. ";
wc20100701[3][2] = "/downloads/press_room/press_releases/2010/07_13_10_colleague.pdf";
wc20100701[3][3] = "/press_room/press_releases/2010/07_13_10_colleague.html";
wc20100701[3][4] = "h";
wc20100701[3][5] = "a";
wc20100701[3][6] = "Jul 13, 2010";
wc20100701[3][7] = "";
wc20100701[3][8] = "|1|7";
wc20100701[3][9] = "1";
wc20100701[3][10] = "R";
wc20100701[3][11] = "";
wc20100701[3][12] = "";
wc20100701[3][13] = "";
wc20100701[3][14] = "Read More";

wc20100701[4][0] = 20100713;
wc20100701[4][1] = "Real-World Experience Confirms Low Inhibitor Rate Established in ADVATE Controlled Clinical Studies for Hemophilia Patients ";
wc20100701[4][2] = "/downloads/press_room/press_releases/2010/07_13_10_advate_pass.pdf";
wc20100701[4][3] = "/press_room/press_releases/2010/07_13_10_advate_pass.html";
wc20100701[4][4] = "h";
wc20100701[4][5] = "a";
wc20100701[4][6] = "Jul 13, 2010";
wc20100701[4][7] = "";
wc20100701[4][8] = "|1|2";
wc20100701[4][9] = "1";
wc20100701[4][10] = "R";
wc20100701[4][11] = "";
wc20100701[4][12] = "";
wc20100701[4][13] = "";
wc20100701[4][14] = "Read More";

wc20100701[5][0] = 20100712;
wc20100701[5][1] = "New Baxter-Sponsored WFH Video Launched to Spur a Global Dialogue on Improving Access to Hemophilia Care and Treatment ";
wc20100701[5][2] = "/downloads/press_room/press_releases/2010/07_12_10_wfh_video.pdf";
wc20100701[5][3] = "/press_room/press_releases/2010/07_12_10_wfd_video.html";
wc20100701[5][4] = "h";
wc20100701[5][5] = "a";
wc20100701[5][6] = "Jul 12, 2010";
wc20100701[5][7] = "";
wc20100701[5][8] = "|1|2";
wc20100701[5][9] = "1";
wc20100701[5][10] = "R";
wc20100701[5][11] = "";
wc20100701[5][12] = "";
wc20100701[5][13] = "";
wc20100701[5][14] = "Read More";

wc20100701[6][0] = 20100707;
wc20100701[6][1] = "Home Therapy the Right Ticket for Writer, Comedian and Kidney Patient ";
wc20100701[6][2] = "";
wc20100701[6][3] = "/press_room/features/2010/07_07_10_jim_mcfarlin.html";
wc20100701[6][4] = "h";
wc20100701[6][5] = "a";
wc20100701[6][6] = "Jul 07, 2010";
wc20100701[6][7] = "";
wc20100701[6][8] = "|1|8";
wc20100701[6][9] = "1";
wc20100701[6][10] = "M";
wc20100701[6][11] = "/images/press_room/features/2010/mcfarlin_thumbnail.gif";
wc20100701[6][12] = "";
wc20100701[6][13] = "Jim McFarlin";
wc20100701[6][14] = "Read More";

wc20100701[7][0] = 20100707;
wc20100701[7][1] = "Baxter India Celebrates World Hemophilia Day April 17, 2010 ";
wc20100701[7][2] = "";
wc20100701[7][3] = "/press_room/features/2010/07_07_10_india_whd.html";
wc20100701[7][4] = "h";
wc20100701[7][5] = "a";
wc20100701[7][6] = "Jul 07, 2010";
wc20100701[7][7] = "";
wc20100701[7][8] = "|1|2";
wc20100701[7][9] = "1";
wc20100701[7][10] = "M";
wc20100701[7][11] = "/images/press_room/features/2010/taiwan_whd_sm.gif";
wc20100701[7][12] = "";
wc20100701[7][13] = "WHD logo";
wc20100701[7][14] = "Read More";

var wc20100801 = MultiDimensionalArray(3,13);
wcnewsarray[idx++] = 20100801;
wc20100801[0][0] = 20100831;
wc20100801[0][1] = "Baxter Provides Hylenex Update ";
wc20100801[0][2] = "";
wc20100801[0][3] = "/press_room/features/2010/08_31_10_hylenex_update.html";
wc20100801[0][4] = "f";
wc20100801[0][5] = "a";
wc20100801[0][6] = "Aug 31, 2010";
wc20100801[0][7] = "";
wc20100801[0][8] = "|7";
wc20100801[0][9] = "1";
wc20100801[0][10] = "F";
wc20100801[0][11] = "";
wc20100801[0][12] = "Baxter Provides Hylenex Update";
wc20100801[0][13] = "";
wc20100801[0][14] = "Read More";

wc20100801[1][0] = 20100824;
wc20100801[1][1] = "Baxter Announces Manufacturing, Supply and Distribution Agreement with Kamada for GLASSIA ";
wc20100801[1][2] = "/downloads/press_room/press_releases/2010/08_24_10_glassia.pdf";
wc20100801[1][3] = "/press_room/press_releases/2010/08_24_10_glassia.html";
wc20100801[1][4] = "h";
wc20100801[1][5] = "a";
wc20100801[1][6] = "Aug 24, 2010";
wc20100801[1][7] = "";
wc20100801[1][8] = "|1|2";
wc20100801[1][9] = "1";
wc20100801[1][10] = "R";
wc20100801[1][11] = "";
wc20100801[1][12] = "";
wc20100801[1][13] = "";
wc20100801[1][14] = "Read More";

wc20100801[2][0] = 20100813;
wc20100801[2][1] = "Addressing a Rare Disorder: Baby Botulism ";
wc20100801[2][2] = "";
wc20100801[2][3] = "http://sustainability.baxter.com/product_responsibility/case_study_baby_botulism_2009.html";
wc20100801[2][4] = "h";
wc20100801[2][5] = "a";
wc20100801[2][6] = "Aug 13, 2010";
wc20100801[2][7] = "";
wc20100801[2][8] = "|1|4";
wc20100801[2][9] = "1";
wc20100801[2][10] = "M";
wc20100801[2][11] = "/images/press_room/features/2010/baby_sm.gif";
wc20100801[2][12] = "";
wc20100801[2][13] = "";
wc20100801[2][14] = "Read More";

wc20100801[3][0] = 20100811;
wc20100801[3][1] = "Expanding Access to Care in Chicago\'s Englewood Neighborhood ";
wc20100801[3][2] = "";
wc20100801[3][3] = "/press_room/features/2010/08_11_10_community_health.html";
wc20100801[3][4] = "h";
wc20100801[3][5] = "a";
wc20100801[3][6] = "Aug 11, 2010";
wc20100801[3][7] = "";
wc20100801[3][8] = "|1|4";
wc20100801[3][9] = "1";
wc20100801[3][10] = "M";
wc20100801[3][11] = "/images/press_room/features/2010/community_hlth_sm.gif";
wc20100801[3][12] = "";
wc20100801[3][13] = "";
wc20100801[3][14] = "Read More";

 dspnews(params['item'],params['ncat'],params['fcat'],params['dmode'],params['fyear'],params['ref']);
